重定向到“/”或index.html

时间:2012-09-23 19:49:05

标签: http redirect seo httpwebrequest

目前在我的网站上,用户可以浏览到

www.mysite.com/index.html
www.mysite.com (which actually returns index.html)

我希望一切都能消除这种野心,例如任

www.mysite.com/index.html

OR

www.mysite.com

考虑

,最佳使用方法是什么?
  1. HTTPRequests的
  2. SEO
  3. 谢谢, 附:如果除了SEO,HTTP请求的数量之外还有其他任何考虑因素,请告诉我。

1 个答案:

答案 0 :(得分:2)

将此内容放入.htaccess

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.html\ HTTP/ 
RewriteRule ^(.*)index\.html$ $1 [R=301,L]