haproxy删除尾部斜杠

时间:2015-04-15 03:05:36

标签: redirect haproxy

我想重定向请求:

http://myrepo/mytest.git/

http://myrepo/mytest.git

所以,删除haproxy中的尾部斜杠。任何提示?

这是我在前端和后端尝试的内容:

 reqrep ^(.*)[\/]$ \1

1 个答案:

答案 0 :(得分:0)

你可以这样试试。

frontend nginx
    bind *:5000
    mode http
    option  forwardfor  
    option   httpclose
    acl old_url path_beg -i /mytest.git
    reqrep ^(.*)[\ /]$     \1
    redirect prefix / code 301 if old_url
    default_backend tomcats

backend tomcats
    mode http
    server tomcat01 X.X.X.X:8080 check inter 2000