我需要你的幫助我想改變我的URL格式,但我不能這樣做,我不斷收到Object Not Found
錯誤。如何更改使用htaccess url格式
真實網址爲:http://localhost/website/page.php?pid=about
我使用htaccess的希望類似這樣的URL http://localhost/website/about.php
我的代碼是:
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteCond %{HTTP_HOST} !^www\.
#RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php !-f
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(([a-zA-z0-9\_\-\+]+))\.html|([a-zA-z0-9\_\-]+)\.php$ page.php?pptype=$2&pppage=$3&id=$4 [QSA,NC,L]
</IfModule>
的可能的複製[?htaccess的乾淨的URL什麼是做到這一點的最好辦法(http://stackoverflow.com/questions/12661287/ htaccess-clean-urls-what-the-best-way-do-it) – Dez