看到很多类似的问题,但我仍在努力使用正确的语法。 我想重定向任何网址,如“www.en.example.org”或“www.en.example.org/anypath” 到“www.example.org/index.php”
所以在我的子域根文件夹中,我在.htaccess
中添加了以下内容RewriteCond %{HTTP_HOST} ^(www\.)?en.example.org(.)*
RewriteRule ^$ http://www.example.org/index.php [R=301,L]
但仅适用于“www.en.example.org”,如果在此网址后面有任何内容,则无效。 欢迎任何想法!
答案 0 :(得分:0)
编辑:抱歉,我误解了您的问题,看到您想要将所有内容重定向到您可以说的相同来源
RewriteRule .* http://www.example.org/index.php [R=301,L]
不需要任何RewriteCond语句
HTH,bovako