反向代理并在 nginx 中保留原始域名 url

问题描述 投票:0回答:1

我找了很多例子,但仍然找不到解决方案 我要使用:

    location /example {
       proxy_pass http://xxx.xxx.xx.xxx/;
   }

现在我有: 域名.com/example -> xxx.xxx.xx.xxx/index.php

但我需要: 域名.com/example -> 域名.com/example/index.php

你能帮忙吗?

nginx nginx-reverse-proxy
1个回答
0
投票

请设置

proxy_set_header Host $host;
© www.soinside.com 2019 - 2024. All rights reserved.