nginx 301 重定向url
原创
©著作权归作者所有:来自51CTO博客作者stan_1057的原创作品,请联系作者获取转载授权,否则将追究法律责任
- 需要携带原url请求路径
location /test/index {
return 301 https://www.test.com$request_uri ;
}
或者
location /test/index {
rewrite ^/(.*) https://www.test.com/$1 permanent;
}
- 直接跳转到新url,不需要携带原地址请求路径
location /test/index {
return 301 https://www.test.com/ ;
}
location /test/index {
rewrite ^/(.*) https://www.test.com/;
}