我找不到与此类似的问题,还有其他人提到 https 重定向,但没有提到最小化重定向。
一直在寻找解决方案,但还无法解决。
我们将 Docker > Traefik 用于 WordPress,并将 www 作为 WordPress 的首选版本。有多个 WP 实例。域是动态添加的。
但是,使用此配置,我收到了两个重定向,从 http 到 https 到 https www
http://example.com/
https://example.com/
https://www.example.com/
有没有办法最小化重定向?
理想的 301 重定向来自
http://example.com directly to https://www.example.com
Traefik 配置文件如下
defaultEntryPoints = ["http", "https"]
[web]
address = ":8080"
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
compress = true
[entryPoints.https.tls]
[acme]
email = "email@domain.com"
storage = "acme.json"
entryPoint = "https"
onDemand = false
OnHostRule = true
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "traefik.example.com"
watch = true
exposedbydefault = false