haproxy 将 URL 路径重定向到另一个路径

haproxy 将 URL 路径重定向到另一个路径

haproxy 版本 1.5.18

我想重定向:

/document/(.*)/(.*)/somefile => /anotherPath/somefile

例如:重定向

/document/20181/20182/a_good_pic.jpg => /anotherPath/a_good_pic.jpg

如何用 haproxy 做到这一点?

我重新尝试按照 reqirep 的示例进行操作,例如:

# replace "/static/" with "/" at the beginning of any request path.
reqrep ^([^\ :]*)\ /static/(.*)     \1\ /\2

但是我的示例的 URL 路径中有两个部分与示例不同,所以我感到困惑。

谢谢!

相关内容