I need to setup a CNAME record locally. The use case is that I have a domain which is being hit in production and I want to change the production DNS settings but I want to verify my setup works by testing the setting locally before I change it in production.
Currently my domain is setup like this:
A mydomain.com some.ip.addre.ss
I want to change it to
CNAME mydomain.com somecnameaddress.com
I am able to test A record changes by modifying my hosts file but I cannot do this to test CNAME records. How would I go about doing this?
somecnameaddress.com
. As for the root domain, probably it will be best to create a web redirection/forwarding frommydomain.com
towww.mydomain.com
, after you make the CNAME forwww.mydomain.com
and it propagates. – Stoddard