目前在我的网站上,用户可以浏览到
www.mysite.com/index.html
www.mysite.com (which actually returns index.html)
我希望一切都能消除这种野心,例如任
www.mysite.com/index.html
OR
www.mysite.com
考虑
,最佳使用方法是什么?谢谢, 附:如果除了SEO,HTTP请求的数量之外还有其他任何考虑因素,请告诉我。
答案 0 :(得分:2)
将此内容放入.htaccess
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.html\ HTTP/
RewriteRule ^(.*)index\.html$ $1 [R=301,L]