如何在htaccess中删除索引文件?

时间:2015-08-19 17:26:26

标签: .htaccess indexing delete-file

RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.html [NC,L]

但是当我进入我的页面菜单并单击“主页”时,我将重定向到www.page.com/index。

我希望它像:www.page.com

1 个答案:

答案 0 :(得分:0)

您可以为index.html文件编写规则

RewriteRule ^index.html$ http://%{HTTP_HOST}/ [R=301,L]