-3

我正在开发一个网站,我想在其中将我的页面 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]
4

1 回答 1

0

试试这个来删除特定页面的 .php 扩展名

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

于 2013-08-28T07:48:20.693 回答