Hey, it’s very useful in some situations where you have to point the domain to your test server. For example, if you want to point your domain “test.com” to your “test server” temporarily, what do you do for this ? You can simply edit your local machine’s hosts file to point that doain to your test server, because the basic search for DNS is starting from the “hosts file” of local machine. In Unix based system the hosts file is located under the “/etc” [/etc/hosts] directory. In windows it is quit different. The default location for the hosts file in Windows is pasted below:
Localdisc(C) >> Windows >> System32 >> drivers >> etc
See this image for more clarification;
How to point test domain to test server ?
Yes, for this, add this line to your hosts file:
xx.xx.xx.xx test.com
Where xx.xx.xx.xx is the test server’s IP address.
That’s it.