用于重定向的 Nginx 配置 URL

Nginx Configuration for Redirecting URL

我想重定向这样的东西 /atpf/xyz -> /atp/xyz,我有这样的配置,但似乎不起作用

location /atpfe {
    rewrite ^/atp/(.*)$ / break;
    proxy_pass http://backend-atp;
}

有人可以推荐吗?

我把它改成了这个并且成功了:

  location /atpfe {
            rewrite ^/atpfe/(.*)$ /atp/ break;
            proxy_pass http://backend-atppub;
        }

不完全了解重写功能