首页 > 其他分享 >ingress 配置域名重定向

ingress 配置域名重定向

时间:2022-11-25 21:01:36浏览次数:69  
标签:redirect ingress 重定向 nginx 域名 io annotations

官网参考:​​​

​https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/#permanent-redirect​

临时重定向

  annotations:
# 此注释允许您返回临时重定向(返回代码 302)
nginx.ingress.kubernetes.io/temporal-redirect: https://www.google.com

永久重定向

  annotations:
# 此注释允许您返回临时重定向(返回代码 302)
nginx.ingress.kubernetes.io/permanent-redirect: https://www.google.com

永久重定向代码

  annotations:
# 此注释允许您修改用于永久重定向的状态代码。将返回带有 308 的永久重定向
nginx.ingress.kubernetes.io/permanent-redirect-code: '308'

标签:redirect,ingress,重定向,nginx,域名,io,annotations
From: https://blog.51cto.com/yht1990/5887755

相关文章