我的应用程序部署在谷歌应用引擎我的 DNS 是去吧爸爸。
我的 app.yaml 是这样的:
handlers:
- url: /.*
http_headers:
X-Forwarded-Proto: https
script: auto
secure: always
redirect_http_response_code: 301
- url: /
http_headers:
X-Forwarded-Proto: https
static_files: build/index.html
secure: always
redirect_http_response_code: 301
upload: build/index.html
- url: /(.*)$
http_headers:
X-Forwarded-Proto: https
static_files: build/\1
secure: always
redirect_http_response_code: 301
upload: build/(.*)
但是当我测试我的应用程序网址时
https://[项目 ID].appspot.com显示一个安全的网站,但是 http://[项目 ID].appspot.com才不是
如何将 http 重定向到 https?我在 app.yaml 中做了正确的更改吗?或者是否可以从 GoDaddy DNS 方面进行一些操作?
另外,当我在 URL 中输入我的域名时,例如https://[域名].com它转到安全网站,但随后我输入http://[域名].com它必须“不安全”地点