我有一个名为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]
答案 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]