将 https://example.com 重定向到 https://www.example.com Heroku/Namecheap
Redirect https://example.com to https://www.example.com Heroku/Namecheap
我有一个通过 Namecheap 购买并托管在 Heroku 上的域。我使用的是 Heroku 自动管理的 SSL 证书。目前我什么时候去https://mysite.io the request times out saying the site cannot be reached. http://mysite.io redirects to https://www.mysite.io with no issues. How would I go about redirecting the https://mysite.ioURL?
我的网站是一个基于 MERN 堆栈的 SPA。
我认为您缺少 DNS CNAME 或 A 记录:
www CNAME example.com.
或
www A <YOUR-PUBLIC-IP>
www 是 example.com 的子域,如登录。example.com 可以。
此问题的解决方案是将根域 (example.com) 和 www 域 (www.example.com) 添加到 Heroku。在此之前,我只有一个 'www' 主机指向 Heroku 的 CNAME 记录。现在我还有一个 ALIAS 记录,根主机 '@' 指向 Heroku。
感谢@Ed。 Kenbers 为我指明了正确的方向!
我有一个通过 Namecheap 购买并托管在 Heroku 上的域。我使用的是 Heroku 自动管理的 SSL 证书。目前我什么时候去https://mysite.io the request times out saying the site cannot be reached. http://mysite.io redirects to https://www.mysite.io with no issues. How would I go about redirecting the https://mysite.ioURL?
我的网站是一个基于 MERN 堆栈的 SPA。
我认为您缺少 DNS CNAME 或 A 记录:
www CNAME example.com.
或
www A <YOUR-PUBLIC-IP>
www 是 example.com 的子域,如登录。example.com 可以。
此问题的解决方案是将根域 (example.com) 和 www 域 (www.example.com) 添加到 Heroku。在此之前,我只有一个 'www' 主机指向 Heroku 的 CNAME 记录。现在我还有一个 ALIAS 记录,根主机 '@' 指向 Heroku。
感谢@Ed。 Kenbers 为我指明了正确的方向!