【发布时间】:2021-06-26 11:15:41
【问题描述】:
我们使用 envoy 代理作为入口 HTTP 代理。现在我们想要从https:/our_domain/ 重定向到https:/our_domain/static/index.html。
例如,到目前为止,我们所有的尝试都失败了
routes:
- match:
path: "/"
redirect: { path_redirect: "/static/index.html" }
- match:
prefix: "/"
route:
prefix_rewrite: "/"
cluster: our_cluster
如何为此用例配置路由?请不要 Lua 解决方案。
【问题讨论】: