从网址中删除php

时间:2013-10-27 19:47:54

标签: php .htaccess url

我的网站正在开发中,需要从我的网址中删除.php扩展名。试图缩短网址,不使用结尾扩展名。

在我的root中我有这种格式的文件:     www.domain.com/index.php     www.domain.com/about.php     www.domain.com/services.php

..和其他类似页面,没有子文件夹

尝试此代码无效

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php [L]

谢谢!

1 个答案:

答案 0 :(得分:1)

更改此行以捕获正则表达式组$1

 RewriteRule ^(.*)$ /$1.php [L]