mod_proxy 与 ProxyRemote 绝对 URL - 保留相对 URL

mod_proxy 与 ProxyRemote 绝对 URL - 保留相对 URL
ProxyPass / https://example.com/
ProxyRemote https://example.com/ http://proxy:8080

该设置通过代理进行,但使用 mod_firehose 时,我看到 mod_proxy 修改了 url 以包含完整主机名。因此,

GET /something HTTP/1.1

example.com 看到:

GET https://examples.com/something HTTP/1.1

有什么方法可以避免这种情况并保留相对 URL?

相关内容