通过一些修改可以隐藏像http://www.abc.com/asd/zxc/这样的 web 文件的扩展名到 zxc.php 但我想做的是完全从 url 中删除文件名,就像http://www.abc.com/asd/
它没有'不管用户去哪里访问网站,但 URL 应该一直保持不变。
有可能做到这一点.htaccess
吗?
我已经尝试过了,但是没有用:
RewriteOptions inherit
RewriteEngine On # enables url rewriting
RewriteCond %{REQUEST_FILENAME} !-d # if requested uri is not directory (!-d)
RewriteCond %{REQUEST_FILENAME}\.php -f # and if there is a file named URI+'.php' (-f)
RewriteRule ^(.*)$ $1.php # then if there is any thing in uri then rewrite it as uri+'.php'