How i can create DNS alias?
ie.: i have one domain named example.com and second domain - example.net. Zone-file of first domain contents:

example.com. IN A 10.1.2.3
www.example.com. IN A 10.1.2.3
*.example.com IN CNAME example.com.

What should i write to second's domain zone-file, that redirected from http://www.example.net to http://www.example.com?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

dns does not handle http redirection.. You can just cname example.net to example.com just fine.. but you would have to do the redirect on your webserver side

link|improve this answer
What should i minimal do on my webserver side? – kirillorloff Jul 27 '10 at 10:38
I am using Apache2.2 – kirillorloff Jul 27 '10 at 10:53
There is an example of what you want to do on Super User here – Iain Jul 27 '10 at 12:29
Question closed. lain - GreatApacheThanks! :) – kirillorloff Jul 27 '10 at 20:49
feedback

Your Answer

 
or
required, but never shown

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