2
下面是例如著名的.htaccess
寫PHP代碼,以根據當前htaccess的是徐永久網址
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
我這裏知道,對於URL的結果將是
http://domain.com/about.php will be http://domain.com/about/
http://domain.com/contact.php will be http://domain.com/contact/
例我的網址是http://domain.com/page.php?id=1
如何在PHP中編寫代碼,根據上面的.htaccess
,URL將爲http://domain.com/page-name/
。
目前還不清楚你問這裏。你所顯示的'RewriteRule'不會像你似乎在暗示的那樣,將'domain.com/about /'重寫爲'domain.com/about.php' ...你的問題是什麼? – 2010-10-01 15:56:52