如何从网址中删除文件扩展名?

时间:2012-01-03 03:37:04

标签: .htaccess url rewrite

我有一个网站,我希望在URL中显示时删除文件扩展名,例如我想将'/home.php'更改为'/ home'。我将如何使用.htaccess文件进行此操作,iv'e在其他地方查看,但似乎有不同的变化,我无法让任何工作。感谢

我的主人是'重影'。

1 个答案:

答案 0 :(得分:0)

使用以下.htaccess规则:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php