作为标题,我想使用Apache httpd作为代理服务器,我正在寻找以下流程的解决方案。
HTTP-POST→apache→服务器AA→响应(200 OK)→apache→响应(204无内容)
由于“服务器AA”不支持此API的返回204代码,因此无法更改。
有什么方法可以在httpd.conf中进行配置
<Location "/test">
ProxyPass http://serverAA/api/aaa
ProxyPassReverse http://serverAA/api/aaa
ProxyPassReverseCookieDomain serverAA "current httpd ip"
RedirectMatch 204 [R=200,L]
</Location>