Is there any Dns configuration to route subdomains to naked domains?

link|improve this question
Naked domains? sex.com and pr0n.com? What exactly did you want to do, an example? – JK. Feb 4 '11 at 3:08
What do you mean by "route"? Configuring your DNS server to return the same address for the "naked" domain as well as any subdomains should be straightforward, are you looking for something else? – Matti Virkkunen Feb 4 '11 at 3:09
2  
DNS only translates names to an IP, and vice versa -- no routing. – OMG Ponies Feb 4 '11 at 3:10
feedback

1 Answer

Do you mean "is there a way to make http://www.example.com/ redirect to http://example.com/"? If so, that's a webserver redirection issue, not DNS.

Do you mean "is there a way to make the DNS record www.example.com the same as example.com"? If so, CNAME is your friend.

www.example.com CNAME example.com will cause a DNS resolver to return the "example.com" answer in response to a "www.example.com" question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.