如何使用htaccess删除页面扩展名(即/profile.html)

时间:2013-03-13 18:06:23

标签: .htaccess

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

0 个答案:

没有答案