是否可以将域/路径重定向到没有路径的内部服务器?即hxxp://example.com/test重定向到内部服务器192.168.1.1:8888
我使用supdomains启动并运行我的traefik但是当我尝试使用路径时遇到了问题。我试过pathprefixstrip
无济于事。
这是在我的qnap服务器上的docker中运行。
[frontends.test1]
backend = "test1"
entrypoints = ["https"]
[frontends.tes1t.routes.test1]
rule = "Host:example.com;PathPrefixStrip /test"
[backends.test1]
[backends.test1.servers.test1]
url = "hxxps://192.168.1.1:8888"
答案 0 :(得分:3)
尝试使用PathPrefixStrip:/test
代替PathPrefixStrip /test
(与您使用的Host:example.com
相同,而不是Host example.com
。