用于重定向URL的Nginx配置

时间:2016-12-12 22:45:21

标签: nginx reverse-proxy proxypass

我想重定向此类/ atpf / xyz - > / atp / xyz,我有这样的配置,但似乎无法正常工作

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

有人可以建议吗?

1 个答案:

答案 0 :(得分:0)

我把它改成了这个并且工作了:

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

没有完全了解重写功能