2
我有這個網址:重寫查詢字符串
oldsite.com/profile.php?uid=10
我想將它改寫爲:
newsite.com/utenti/10
我怎樣才能做到這一點?
更新:我寫了這個:
RewriteCond %{QUERY_STRING} ^uid=([0-9]+)$ RewriteRule ^profile\.php$ http://www.newsite.com/utenti/$1 [R=301,L]
但是$ 1場完整的查詢字符串,而不僅僅是用戶ID。