0

II 使用下面的代码从我的(新)域中删除 www。现在我也想将旧域重定向到新域。无法让它工作。有可能两者都做吗?

RewriteCond %{HTTP_HOST} ^www\.skiweather\.eu [NC]
RewriteRule ^(.*)$ http://skiweather.eu/$1 [L,R=301]
RewriteBase /
4

1 回答 1

1

只需将任何内容重写到您的新域:

RewriteCond %{HTTP_HOST} !=skiweather.eu [NC]
RewriteRule ^(.*)$ http://skiweather.eu/$1 [L,R=301]
于 2012-06-03T07:14:03.180 回答