Nginx具有使用merge_slashes选项删除斜线的功能,该选项默认情况下设置为true。在下面的链接中说明
http://nginx.org/en/docs/http/ngx_http_core_module.html#merge_slashes
因此http://mydomain.somesystem.com///////test//////api变为 http://mydomain.somesystem.com/test/api
我们如何在Traefik入口中实现/实现类似的功能?