htaccess重定向到index.html

时间:2013-02-21 08:23:33

标签: .htaccess redirect

为了尊重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

1 个答案:

答案 0 :(得分:1)

这项工作

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