如何使用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]