2013-08-28 47 views
-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] 
+0

你也可以使用DirectoryIndex的,而不是URL重寫。像DirectoryIndex home.php index.php index.html site-down.php – Anant

回答

0

試試這個刪除.php擴展爲一個特殊頁

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