我想删除extesion .php并同时添加/ 404
我已经看了几个删除.php的代码,但要移除但是在网址中添加了服务器路径
I have: http://domain.com/pages/header.php
I want: http://domain.com/pages/header or http://domain.com/pages/header/404
答案 0 :(得分:0)
尝试此规则。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^header/404$ header.php [L]
把它放在页面目录中。