在地址中更改“index.php”

时间:2013-08-28 07:08:38

标签: php

我正在开发一个网站,我想将我的页面localhost / home.php更改为localhost / home /

页面

我试过这个.htaccess代码

Options +FollowSymlinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php page=/$1 [L,QSA]

1 个答案:

答案 0 :(得分:0)

尝试此选项可删除特定页面的.php扩展名

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(home)$ home.php [L,NC]
</IfModule>