gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 23:49:33 25 4
gpt4 key购买 nike

我已经配置了一个使用 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

我怎样才能做到这一点?

最佳答案

固定:

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

关于apache - 使用 mod_proxy 进行反向代理,保留原始请求 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6158297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com