htaccess:删除.php扩展名

时间:2013-01-14 17:57:00

标签: .htaccess mod-rewrite

我有一个名为Show.php的文件

我想删除.php扩展名,如果有人请求/Show.php,请将其重定向到没有.php扩展名的页面。

这是我的htaccess,但它没有将用户重定向到没有扩展页面。

RewriteCond %{REQUEST_URI} ^Show\.php$
RewriteRule ^Show\.php$ ./Show [R=301]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^Show$ ./Show.php [L]

1 个答案:

答案 0 :(得分:1)

REQUEST_URI表达式不同,

RewriteRule以前导/开头,但您的表达式以^Show开头。只需添加前导斜杠即可完成工作。其他一切看起来都是正确的。

RewriteCond %{REQUEST_URI} ^/Show\.php$
#-------------------------^^^^^
RewriteRule ^Show\.php$ Show [R=301]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#Rewrite to Show.php rather than ./Show.php
RewriteRule ^Show$ Show.php [L]