Nginx permanent重定向参数问题?项目最近改版,页面实现全部静态化。 原始的动态页面需要给个301永久重定向到静态页面上,好告诉搜索将原始的页面的权重转到新的静态页面下。 if ($query_string ~* "id=(\d+)$") { set $id $1; rewrite ^/goods\.PHP /goods/$id.CSS/ target=_blank class=infotextkey>Html permanent; } 这样重定向后发现 当输入 http://xxx.com/goods.php?id=254 的时候会跳转到 http://xxx.com/goods/254.html?id=254下 后面看见搜索引擎的收录地址也添加了后面不必要的参数,老大叫去掉后面参数。那该怎么来处理呢? 例如: 把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参数来实现。 例如: 把http://example.com/test.php?para=xxx&p=xx 重写向到 http://example.com/new?p=xx 可以写成:rewrite ^/test.php /new?p=$arg_p? permanent; (责任编辑:IT) |