-1
我需要重定向只http://shop.test.com到http://www.test.com/fedex-orders/重定向僅首頁
只是主頁。沒有其他的。即http://shop.test.com/?page=blog不應該重定向。
我需要重定向只http://shop.test.com到http://www.test.com/fedex-orders/重定向僅首頁
只是主頁。沒有其他的。即http://shop.test.com/?page=blog不應該重定向。
添加位置信息,像這樣:
location =/{
if ($args !~* .+) {
return 301 http://www.test.com/fedex-orders;
}
}
基本上該位置的「/」而已,所以任何配置匹配有隻適用於網頁
,因爲與得到的參數什麼是相同的文件對於Web服務器,你需要額外的if,只有當正則表達式不匹配時才重定向。