Custom domain forwarding to original render URL

I recently set up a new web service and attached the custom subdomain http://us.heavenlymove.com/. Everything seemed to work smoothly and it was all working yesterday, but when I checked the site today, when I navigate to the subdomain it redirects me to the original render site (i.e. the domain isn’t masked) http://heavenlyppc.onrender.com/

Any ideas on what might be the issue here?

Hi @rojo, when I curl your site, I see that there’s a redirect coming from WordPress itself. Does WordPress have a setting to specify its canonical domain? If so, you might need to set that.

In this HTTP response from your service, note the x-redirect-by: WordPress header:

❯ curl -I https://us.heavenlymove.com/
HTTP/2 301
content-type: text/html; charset=UTF-8
date: Thu, 17 Dec 2020 19:06:11 GMT
location: https://heavenlyppc.onrender.com/
server: Apache/2.4.38 (Debian)
x-powered-by: PHP/7.3.16
x-redirect-by: WordPress

That was it! Just had to update the settings in wordpress under Settings > General. Thank you!