nginx 301重定向

示例:把http://example.com/old.php?para=xxx 重定向到 http://example.com/new

不去参数:

写法:rewrite ^/old.php(.*) /new permanent;

结果:http://example.com/new?para=xxx


去掉参数:

写法:rewrite ^/old.php(.*) /new? permanent;

结果:http://example.com/new

原文地址:https://www.cnblogs.com/jiafeimao-dabai/p/14769233.html