我有一个网站,我希望在URL中显示时删除文件扩展名,例如我想将'/home.php'更改为'/ home'。我将如何使用.htaccess文件进行此操作,iv'e在其他地方查看,但似乎有不同的变化,我无法让任何工作。感谢
我的主人是'重影'。
答案 0 :(得分:0)
使用以下.htaccess规则:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php