Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有人点击特定目录,我想强制 URL 为 index.html。如何使用 .htaccess 执行此操作?
你可以试试这个规则:
RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{REQUEST_URI} !index\.html$ [NC] RewriteRule ^(.*?)/?$ /$1/index.html [L,R=301]