我有两个端点
这两个端点都指向两个不同的IP。
端点www.site.com
在k8s集群中不是运行。
只要有人点击site.com
,我都希望它自动重定向到www.site.com
。所以,我有以下配置
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: my-vs
namespace: dev
spec:
hosts:
- site.com
http:
- match:
- authority:
exact: site.com
redirect:
authority: www.site.com
但是,这给了我404错误。 实现此目的的正确方法是什么?