1
我需要重定向所有URL與非尾隨到URL斜線HAProxy的去除拖尾斜線
實施例:
http://www.example.com/education/ - >http://www.example.com/education
http://www.example.com/blah// - >http://www.example.com/blah
http://www.example.com/blah/blah/// - >http://www.example.com/blah/blah
這是我現在:
frontend localnodes
bind 127.0.0.1:80
acl has_trailing_slash path_end/
reqrep ^(.*)[\ /]$ \1
redirect prefix/code 301 if has_trailing_slash
參見:haproxy remove trailing slash
但這僅僅是讓瀏覽器中輸入301S的重定向循環。我如何實現這一目標?