HAProxy和reqrep重写配置

时间:2013-04-03 02:28:29

标签: haproxy

我正在尝试配置Haproxy acl。 例如,http://www.abc.com/test/test.html重写为http://www.abc.com/index.html。请告诉我该怎么办?感谢

reqrep ^([^\ :]*)\ /test/test.html     \1\ /index.html

但是网络服务器反馈:

  

502 Bad Gateway

服务器返回无效或不完整的回复。

1 个答案:

答案 0 :(得分:3)

您的请求的配置应如下所示:

reqrep ^GET\ /test/test.html\ HTTP/1.1 GET\ /index.html\ HTTP/1.1

default_backend dyn_server

backend dyn_server
mode http
server web1 ip:port

希望这会对你有所帮助