1

如何使用 htaccess 删除页面扩展名(即 profile.html)?因此,如果我加载 www.mysite.com/profile.html 我需要将 profile.html 删除。

这仅删除 index.html ,如果我将其更改为 profile.html 它只会转到 mysite.com 并加载主页。

Options +FollowSymLinks
RewriteEngine On
RewriteCond %{THE_REQUEST} \/index.html\ HTTP [NC]
RewriteRule (.*)index.html$ /$1 [R=301,L]
4

0 回答 0