這是我的.htaccess
。它重定向/contact
到index.php?page=contact
這很好用。但有了這個.htaccess
,如果有人把,他們會得到一個錯誤。.htaccess url重寫
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_URI} !index\.php [NC]
RewriteRule ^([^/]+)/?$ index.php?page=$1 [QSA]
基本上,有沒有什麼辦法,如果有在URL中沒有.php
只改寫?
如果網址中有.php
,例如contact.php
只是加載正常.php
頁面。
我該怎麼做?
可能重複http://stackoverflow.com/questions/1698464/mod-rewrite-去除php-but-still-serve-the-php-file) – typeoneerror