1
我已經Google'ed這個,但無法找到答案。URL重寫查詢字符串
我有這個網址:
www.mysite.com/index.php?tip=1
(分別爲www.mysite.com/?tip=1
)
,並希望它改寫爲:
www.mysite.com/tip/1
您的幫助,將不勝感激。
我已經Google'ed這個,但無法找到答案。URL重寫查詢字符串
我有這個網址:
www.mysite.com/index.php?tip=1
(分別爲www.mysite.com/?tip=1
)
,並希望它改寫爲:
www.mysite.com/tip/1
您的幫助,將不勝感激。
你將需要啓用你的Apache配置重寫模塊裝上的.htaccess以下設置文件的基本文件夾
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^tip/(.*) /index.php?tip=$1 [L,NC,QSA]
你想逆:www.mysite.com/tip/1到www.mysite.com/index.php?tip=1? – jacouh