Reputation: 71
I want to open foo.bar.com when user write example.com or ok.example.com to the address bar of the browser. I have tried CNAME like below, but it couldn't work.
How can I do that?
In example.com DNS settings: type: CNAME | name: ok | domain: foo.bar.com | TTL: auto
Upvotes: 1
Views: 1590
Reputation: 331
When you create a CNAME it just points to the IP address associated with that DNS name's A record (foo.bar.com). So if the server where your CNAME is pointing to doesn't listen to the domain name in your case example.com it won't work.
also example.com is the one case where a CNAME does not work, for every other subdomain it does.
Upvotes: 2