标签: .htaccess
如果有人点击某个特定目录,我想强制该网址为index.html。我怎么用.htaccess做到这一点?
答案 0 :(得分:0)
您可以尝试以下规则:
RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{REQUEST_URI} !index\.html$ [NC] RewriteRule ^(.*?)/?$ /$1/index.html [L,R=301]