0

如果有人点击特定目录,我想强制 URL 为 index.html。如何使用 .htaccess 执行此操作?

4

1 回答 1

0

你可以试试这个规则:

RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_URI} !index\.html$ [NC]
RewriteRule ^(.*?)/?$ /$1/index.html [L,R=301]
于 2013-10-24T16:52:37.163 回答