后端的项目的 url 为 10.0.0.2/share ,所有子路径都是/share 下面,现在需要访问根路径时重定向到/share/Index ,访问其他路径时为/*,即隐藏/share 直接显示为
abc.com/*,下面是一个 caddy 的示例,求大佬们帮俺写个 traefik 的示例。
二级域名 {
@
notShare {
not path /share
}
rewrite @
notnotShare /share{uri}
reverse_proxy localhost:8080
}
redir / /share/Index