如何在 Apache 中将部分 URL 传递给 ProxyPass

如何在 Apache 中将部分 URL 传递给 ProxyPass

我正在访问 URL http://example.com/ws/abc。现在我需要代理一个 URL 为 的服务器https://server.com/abc

我尝试了以下两种代理方法。但是没有用。

  1. RewriteRule ^/ws/(.*) "https://server.com/$1" [P]
  2. ProxyPassMatch ^/ws/(.*) https://server.com/$1

可能的问题是什么?我似乎无法abc从 URL 中获取。我得到了/ws/abc

相关内容