-3
我開發一個網站中,我想改變我的網頁本地主機/ home.php到本地主機頁的/ home/更改「的index.php」中的地址
這個我試過的.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]
你也可以使用DirectoryIndex的,而不是URL重寫。像DirectoryIndex home.php index.php index.html site-down.php – Anant