Mobile app version of vmapp.org
Login or Join
Murray432

: Is domain name forwarding subject to "outages?" Is is my understanding that domain name forwarding is not subject to "outages": servers can have outages, and websites can be down, but the forwarding

@Murray432

Posted in: #DomainForwarding

Is is my understanding that domain name forwarding is not subject to "outages": servers can have outages, and websites can be down, but the forwarding itself cannot be down, as this is simply a pointer. (Or, the entire registrar where the DNS settings are hosted would have to malfunction. Is this correct?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Murray432

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

Domain name forwarding is subject to outages just like any other hosting. Here is a list of steps that happen when somebody types in a domain name (forward.exmample.com) that gets forwarded (to example.com):

A DNS lookup for forward.example.com is performed and an IP address is obtained
The browser connects to that IP address on port 80
The browser issues a GET request for the root document
The server responds with a 301 moved permanently status and a Location: header of example.com

Outages could happen at the DNS level or at web host level. Here is what happens for a similar request for the correct domain. As you can see there is not much difference:


A DNS lookup for example.com is performed and an IP address is obtained
The browser connects to that IP address on port 80
The browser issues a GET request for the root document
The server responds with a 200 status code and the contents of the page.


The biggest difference is that forwarding is a very simple type of hosting.


There is generally no database (only one piece of information per forwarded domain: where to forward). The data is usually stored in a configuration file.
The response is simple and short. (As opposed to building a complex page where lots can go wrong during that process.)
Even for a popular website, there won't be very much traffic to the forwarding rule. It should only used by type in traffic. Links, bookmarks, and on site navigation would generally not make use of the forwarding service.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme