我具有用于代理网站的Haproxy配置,但是如果有一些特定的URL路径,我将URL重定向到root会有一些问题
如果访问/ abc路径,我需要将用户重定向到root 示例代码
frontend http-in
bind *:9001
option httplog
acl mobile_ua hdr_sub(user-agent) -i -f /etc/haproxy/user-agent-mobile.lst
acl web_load path_beg /abc /def
use_backend b_mob if mobile_ua
default_backend b_web
backend b_mob
option httplog
mode http
server s1 mobile.domain.com:8080
backend b_web
mode http
server s1 web.domain.com:8080
我想让URL路径以/ abc或/ def开头(acl web_load )如何使它重定向到url路径的根(删除路径url)
谢谢