我有一个服务器example.com
。
在我的网络上,我有一个运行在123.456.78.90:3333
上的Node服务。
我通过在Nginx的位置标头中添加proxy_pass在端点example.com/aaa
上加载此文件。
该端点具有123.456.78.90:3333/abc
和123.456.78.90:3333/def/ghi
访问123.456.78.90:3333
时,我能够成功加载example.com/aaa
但是,从123.45.67.89:3333
-/abc
和/def/ghi
的根对子URL的控制正以example.com/abc
和example.com/def/ghi
的方式访问
如何从example.com/aaa/abc
和example.com/aaa/def/ghi
重定向它们?
这是我的Nginx配置当前的样子
location /aaa/{
proxy_pass http://123.456.78.90:3333/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}