为了尊重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.html
的情况下仍然无法重定向到www.mywebsite.com
。
答案 0 :(得分:1)
这项工作
RewriteCond %{HTTP_HOST} !^www.mywebsite.com$ [NC]
RewriteRule ^(.*)$ http://www.mywebsite.com/$1 [L,R=301]