1. 需要携带原url请求路径
location /test/index {
return 301 https://www.test.com$request_uri ;
}

或者

location /test/index {
rewrite ^/(.*) https://www.test.com/$1 permanent;
}
  1. 直接跳转到新url,不需要携带原地址请求路径
location /test/index {
return 301 https://www.test.com/ ;
}
location /test/index {
rewrite ^/(.*) https://www.test.com/;
}