目前正在尝试使用Nginx作为代理,并发现使用另一个URI作为前缀的路由存在一些困难。示例:
location /api/route/to/specific/application {
proxy_pass http://proxying.to/site/A;
}
location /api {
proxy_pass http://proxying.to/another/site/B;
}
访问http://mysite.io/api/route/to/specific/application时,我从Nginx 获得 404,而当我直接访问http://proxying.to/site/A时,我会收到预期的页面。
知道如何让它发挥作用吗?
由于