有什么办法可以更改apache httpd config中的响应状态代码

时间:2018-07-19 04:38:09

标签: apache

作为标题,我想使用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>

0 个答案:

没有答案