使用 mod_proxy 进行反向代理,保留原始请求 URL

发布于 2024-11-10 04:38:54 字数 572 浏览 0 评论 0原文

我已经使用 mod_proxy (Apache2) 配置了一个反向代理,监听 127.0.0.1:80,它将所有请求代理到 127.0.0.1:8080

所以我配置了 mod_proxy,如下所示:

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080
ProxyPassReverse /foo http://127.0.0.1:8080

当我请求 http://127.0 时.0.1/foo/bar,监听 127.0.0.1:8080 的应用从 mod_proxy 获取以下请求 URL:

http ://127.0.0.1/bar

相反,我想保留原始请求,并获取:

http ://127.0.0.1/foo/bar

我该怎么做?

I've configured a reverse proxy using mod_proxy (Apache2) listening on 127.0.0.1:80, that proxies all the request to 127.0.0.1:8080

So I've configured mod_proxy like:

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080
ProxyPassReverse /foo http://127.0.0.1:8080

When I request http://127.0.0.1/foo/bar, the app listening on 127.0.0.1:8080 gets the following request URL from mod_proxy:

http://127.0.0.1/bar

Instead I'd like to preserve the original request, and get:

http://127.0.0.1/foo/bar

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆追雨的时光 2024-11-17 04:38:54

固定为:

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080/foo
ProxyPassReverse /foo http://127.0.0.1:8080/foo

Fixed with:

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /foo http://127.0.0.1:8080/foo
ProxyPassReverse /foo http://127.0.0.1:8080/foo
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文