我正在托管一个网站example.herokuapp.com
。我example.com
在 Google Domains(注册商)上拥有该域。我也为此域(电子邮件)设置了 GSuite。
我想将所有内容转发到https://www
或https://
。
到目前为止,我可以得到:
[Failure] https://example.com/ -> "This site can’t be reached" Chrome error page
[Success] http://example.com/ -> https://www.example.com/
[Success] https://www.example.com/ -> https://www.example.com/
[Failure] http://www.example.com/ -> http://www.example.com/
在 Google Registrar 中,我有:
Name Servers
Use the Google Domains name servers
Synthetic records
example.com -> https://www.example.com (302)
Custom resource records
NAME | TYPE | TTL | DATA
-----+-------+-----+------------------------------
@ | MX | 1h | 10 aspmx.l.google.com. (and others) <- mail
www | CNAME | 1h | www.example.com.herokudns.com.
跑步heroku domains
给了我
www.example.com www.example.com.herokudns.com
example.com example.com.herokudns.com
跑步heroku certs:auto
给了我
www.example.com DNS Verified
example.com Failing
如何让两个失败的网址正常工作?
我的假设是我需要另一个CNAME
forexample.com.herokudns.com
但我不能添加一个 for @
。