Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is difference between www vs www1, www2, www3 etc [closed]

Does it mean that user requests directing to the different servers?

I usually see it on websites with high traffic.

for eg:- https://www.tcs.com/

      https://www2.deloitte.com/
like image 735
Still Questioning Avatar asked Jan 01 '11 21:01

Still Questioning


People also ask

What is the difference between www3 and WWW?

What is WWW3, WWW4, etc? If you see www3 or even www4, then these are additional hostnames and subdomains for a website. Web developers may opt to use these addresses when they are redirecting users to additional servers.

What is the difference between WWW1 and WWW?

Sometimes in a URL the “WWW” is followed by a number, such as “WWW1” or “WWW2.” The number that follows the “WWW” indicates that the data being retrieved by the Web browser is gathering the information from a different Web server than the one that serves the typical “WWW” address.

What does WWW2 or www3 mean?

From WIKI: WWW2 and WWW3 are hostnames or subdomains, typically used to identify a series of closely related websites within a domain, such as www.example.com, www2.example.com, and www3.example.com; the series may be continued with additional numbers: WWW4, WWW5, WWW6 etc.

What is a WWW2 website?

A WWW2 website is just a website copy that the owners of the original website maintain on a different server in case the main one needs some help with load balancing or maintenance is being carried out on the main website. The larger the number after WWW, the more web servers are involved.


2 Answers

This is largely speculative, but generally each of the www'n's is simply a different web server, which a given user has been routed to either manually (for example all images might live on www2, etc.) or by some form of up-stream round robin system or load-balancer, both of which tend to use some component of the end user's IP address or similar to ensure that a user's session will remain on a given server.

Incidentally, more modern implementations will hide the existence of multiple servers behind a single 'www', so that this is less visible/intrusive.

like image 155
John Parker Avatar answered Nov 05 '22 21:11

John Parker


It doesn’t technically mean anything in particular — domains read right-to-left, so for everything to the left of a company’s domain, it’s up to the company what each bit means. (“www”, for example, is just a conventional subdomain for the web site of the company.)

I‘ve no personal experience of what www1, www2 et al are commonly used for in practice. It might well be different servers, although to my mind that’s exposing implementation details at the interface level, and is thus a bad idea.

like image 37
Paul D. Waite Avatar answered Nov 05 '22 22:11

Paul D. Waite