我想重定向到与子域完全相同的文件夹。子域应该是动态的。为此,我使用下面给出的 htaccess 代码。The page isn't redirecting properly
但是在Firefox中收到错误消息。
<IfModule mod_rewrite.c>
Options +SymLinksIfOwnerMatch
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).example.com.au$ [NC]
RewriteRule ^(.*)$ %2 [NC,L]
</IfModule>