htaccess:结合永久域名更改和剥离www

时间:2012-06-03 07:07:22

标签: .htaccess url-rewriting

我使用下面的代码从我的(新)域中删除www。现在我想将旧域重定向到新域。无法让它发挥作用。是否有可能同时做到这两点?

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

1 个答案:

答案 0 :(得分:1)

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

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