如何将http://www.mydomain.com/test/重定向到http://mydomain.com/test/

时间:2012-11-01 14:35:51

标签: .htaccess

此代码对我不起作用:

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

我测试了许多内容,包括Generic htaccess redirect www to non-www,但它没有解决我的问题。

任何人都可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

RewriteEngine On
RewriteCond %{HTTP_HOST} !^my-domain\.com$ [NC]
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L]

答案 1 :(得分:0)

我用

解决了它
RewriteCond %{HTTP_HOST} ^www.mydomain.com [NC]
RewriteRule .* http://mydomain.com%{REQUEST_URI} [R=301,L]