我希望重定向www.mysite.com/index.html
到
www.mysite.com/
但我不希望使用index.html重定向所有地址
www.mysite.com/folder/index.html
到
www.mysite.com/folder /
因此,只需将第一个index.html页面重定向到站点的根目录。
答案 0 :(得分:8)
将以下内容添加到www.mysite.com
根文件夹中的.htaccess文件中RewriteEngine On
RewriteBase /
# redirect html pages to the root domain
RewriteRule ^index\.html$ / [NC,R,L]