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