I have 2 domains hosted with different hosts. I need to redirect Domain A to Domain B. Unfortunately I can't do a 301 redirect from Host A, but can only modify/add DNS entries (A-Records and CNAMEs) at Host A.
Surely it is possible to redirect www.DomainA.com to www.DomainB.com using only A-records and CNAMEs?
At present, the DNS entries are:
DomainA.com. 3600 IN SOA ns1.HostA.net.
www 3600 IN CNAME www.DomainB.com.
DomainA.com. 3600 IN NS ns1.HostA.net.
DomainA.com. 3600 IN NS ns2.HostA.net.
DomainA.com. 3600 IN NS ns3.HostA.net.
I want to redirect
DomainA.com -> DomainB.com
*.DomainA.com -> *.DomainB.com
I've tried the suggestion from this other post but it didn't work.
How can I achieve this only with A-Records and CNAMEs please? Thank you for your advice.
Prembo.
So you are not looking at redirection as such (as that happens at the app level, i.e. on Apache/Nginx/wherever) but rather on the DNS resolution. The host on which DomainA is hosted will or should never be hit, based on your description as you want the DNS requests to be resolved to the IPs of DomainB. Unless I'm missing something in your request?
As Shane pointed out DNS is not capable of HTTP redirection - that's an application/webserver duty. You could make DomainA and DomainB resolve to the same IP on DNS and all would work. But if you're looking to do this on per URL/per-path way then this is not possible - DNS is not capable of that - it's a simple DNS->IP service, what's happening with the actual URL is the webserver's task.
After the comment below, what I'd do is to refer all DNS records for DomainA to the same IP(s) as DomainB is pointed to - this way you will get HTTP request hitting hostB and then it's just a simple matter of:
This will rewrite anything coming to DomainB to DomainA which can be hosted on the same server or somewhere else. I appreciate that the second option is probably an overhead and not necessary if you can/are allowed to create Name Based Virtual hosts on apache.
I'd go with 1. - point all DNS records of DomainA to the same IP(s) as DomainB is pointing and create particular Name Based VirtualHosts on Apache.
As others have stated, it's not possible to perform HTTP redirection with DNS alone. DNS and HTTP work together to redirect a user from one web page to another.
You can use DNS by itself to make domain A show the same content as domain B, but the web browser will show domain A in the URL. You need to be very careful with this as it's quite bad from an SEO perspective. You'll get into trouble for "duplicate content", and search engines will punish you for it.
The correct (from a UX and SEO perspective) way to make this work is to perform an HTTP redirect from Domain A to Domain B.
You can manually configure your web servers (Apache, Nginx, IIS, etc.) to do this work for you if you are technically able. There are lots of good resources to help with that around the web.
If you can't or don't want to control the infrastructure you can use a URL redirection service to perform this job for you. I am the founder of one called EasyRedir, but there are certainly others.
Domain A needs to have the same IP addresses as in domain B. There is no need for any reference to B in A's definition. Web browsers do not "follow" CNAMEs as redirection, they will keep the same hostname and use the CNAME's own record to resolve to an IP address.
If you wish for B to appear in the browser when A is visited (optional and unrelated to DNS), you need to match the HTTP Host and redirect the requests on the Web server. with Apache, you would use mod_rewrite to do it like this in a virtual host definition:
Of course it is possible to redirect, with the following trick:
blank.......................A............................ip-addr-2
www.........................A............................ip-addr-2
What we have here is redirection, essentially. A valid URL will resolve based on the existing DNS primary DNS zone. A fictive URL will be redirected to ip-addr-2. What is important is that the name of this entry is blank, so it will fall down to the next entry in the record and redirect to ip-addr-2
If you really wanted to redirect a domain with only DNS records and are OK with third-party services, you may use forwarddomain.net.
It works by setting your source domain (e.g.
www.olddomain.com
) CNAME tor.forwarddomain.net
(or A+AAAA records of that) and set the target domain URL by writing a TXT record with_
prefix (e.g._.www.olddomain.com
) to that domain withforward-domain=
prefix (e.g.forward-domain=https://newdomain.net
). The full DNS record will be:That will redirect
www.olddomain.net
tonewdomain.net
, also works with HTTPS.I haven't tried it, but I think you can do this:
This is instead of any other records in the DomainA zone file at all. No SOA, nothing.
Don't try this on a domain that you care about working.