0

为了尊重 SEO 指令,我想重定向来自以下的所有流量:

http://www.mywebsite.com
http://mywebsite.com
www.mywebsite.com
mywebsite.com

http://wvw.mywebsite.com/index.html

目前我使用这段代码,但它不能正常工作:

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

一切正常,但www.mywebsite.com/index.htmlwww.mywebsite.com.

4

1 回答 1

1

做这项工作

RewriteCond %{HTTP_HOST} !^www.mywebsite.com$ [NC]
RewriteRule ^(.*)$ http://www.mywebsite.com/$1 [L,R=301]
于 2013-02-21T09:02:01.073 回答