Redirect https://example.com to https://www.example.com Heroku/Namecheap Redirect https://example.com to https://www.example.com Heroku/Namecheap heroku heroku

Redirect https://example.com to https://www.example.com Heroku/Namecheap


I think you are missing a DNS CNAME or A Record:

www CNAME example.com.

or

www A <YOUR-PUBLIC-IP>

www is a subdomain of example.com like login.example.com can be.


The solution to this issue was to add both the root domain (example.com) and the www domain (www.example.com) to Heroku. Prior to this I had only a CNAME Record with a 'www' host pointed to Heroku. Now I also have an ALIAS Record with the root host '@' pointed to Heroku.

Thanks to @Ed. Kenbers for pointing me in the right direction!