2
我已經在.htaccess文件中設置了301重定向的數量,但我遇到了使重定向不匹配的查詢字符串的問題。301重定向:匹配查詢字符串,不要將它附加到新的重定向
例子:
Redirect 301 /about/history/?lang=fr http://www.newdomain.com/fr/history
Redirect 301 /about/history/ http://www.newdomain.com/nl/history
所以olddomain.com/about/history/?lang=fr
現在匹配第二個規則和重定向到http://www.newdomain.com/nl/history?lang=fr
。
我希望它從字面上採用?lang=fr
,而不是將querystring附加到新的重定向。
我該怎麼做?
謝謝!我最終使用了PHP重定向,而在這種情況下效果更好。 – Joan 2013-04-23 18:51:04