我想重定向此类/ atpf / xyz - > / atp / xyz,我有这样的配置,但似乎无法正常工作
location /atpfe {
rewrite ^/atp/(.*)$ /$1 break;
proxy_pass http://backend-atp;
}
有人可以建议吗?
答案 0 :(得分:0)
我把它改成了这个并且工作了:
location /atpfe {
rewrite ^/atpfe/(.*)$ /atp/$1 break;
proxy_pass http://backend-atppub;
}
没有完全了解重写功能