Nginx permanent重定向參數問題

項目最近改版,頁面實現所有靜態化。php

原始的動態頁面須要給個301永久重定向到靜態頁面上,好告訴搜索將原始的頁面的權重轉到新的靜態頁面下。html

if ($query_string ~* "id=(\d+)$") {
        set $id $1;
        rewrite ^/goods\.php /goods/$id.html permanent;
  }
這樣重定向後發現 當輸入 http://xxx.com/goods.php?id=254 的時候會跳轉到 http://xxx.com/goods/254.html?id=254下搜索引擎

後面看見搜索引擎的收錄地址也添加了後面沒必要要的參數,老大叫去掉後面參數。那該怎麼來處理呢?htm

 

 

例如:
把http://example.com/test.php?para=xxx 重定向到 http://example.com/new
若按照默認的寫法:rewrite ^/test.php(.*) /new permanent;
重定向後的結果是:http://example.com/new?para=xxx
若是改寫成:rewrite ^/test.php(.*) /new? permanent;
那結果就是:http://example.com/new索引

因此,關鍵點就在於「?」這個尾綴。假如又想保留某個特定的參數,那又該如何呢?能夠利用Nginx自己就帶有的$arg_PARAMETER參數來實現。string

例如:
把http://example.com/test.php?para=xxx&p=xx 重寫向到 http://example.com/new?p=xx
能夠寫成:rewrite  ^/test.php   /new?p=$arg_p?  permanent;it

相關文章
相關標籤/搜索