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.
我是 HTACCESS 文件的新手。
请告诉我如何通过 .htaccess 文件将http://website.com/index.html重定向到http://website.com/ 。
问候,
沙什康特
我相信你可以这样做:
RewriteCond %{THE_REQUEST} /index\.html? [NC] RewriteRule ^(.*/)?index\.html?$ /$1 [R=301,L]
你也应该学会用谷歌搜索这些东西,因为这是一个很常见的问题。