This article applies to 123 Reg Servers.
Windows
-
Step 1 of 7
Locate the HOSTS file on your computer.Windows NT/2000/XP/2003/Vista/7C:windowssystem32driversetchostsWindows 95/98/MeC:windowshosts -
Step 2 of 7
Open this file with a text editor such as Notepad or Wordpad.Tip: Right-click on Notepad and select the option to Run as Administrator - otherwise you may not be able to open this file. -
Step 3 of 7
When you open the file you will see two columns of information, the first containing IP addresses and the second containing host names. By default, a windows hosts file should be similar to the following:127.0.0.1 localhostTip: Consider performing a "Save As" so you have an original copy of the file that you can restore later. -
Step 4 of 7
You can add additional lines to this file that will point requests for a particular domain to your new server’s IP address.127.0.0.1 localhost [[IP ADDRESS]] yourdomain.com [[IP ADDRESS]] www.yourdomain.com -
Step 5 of 7
Save the changes to your HOSTS file. -
Step 6 of 7
Restart any currently open web browsers and you may also want to flush your DNS cache. In Windows go to Start, and then Run, then type “cmd” and hit enter. Type the following:ipconfig /flushdns -
Step 7 of 7
You will now be able to view the website on your new server while keeping the domain pointing to its existing hosting.
Mac OS X
-
Step 1 of 7
Open Terminal, which is in Applications, then the Utilities folder. -
Step 2 of 7
You may want to first make a backup copy of your existing hosts file:sudo cp /private/etc/hosts /private/etc/hosts-origPlease Note: You may also need to grant yourself sudo privileges, if you get a permission error. In your Help menu, search for root and select the instructions for Enabling the root user. Follow these. -
Step 3 of 7
Enter your user password at the prompt. -
Step 4 of 7
You will see a file with contents similar to the following:## # Host Database # # localhost is used to configure the loopback interface # when the system is booting. Do not change this entry. ## 127.0.0.1 localhost 255.255.255.255 broadcasthost ::1 localhost fe80::1%lo0 localhost -
Step 5 of 7
Add your domain and IP address to the bottom of the file.## # Host Database # # localhost is used to configure the loopback interface # when the system is booting. Do not change this entry. ## 127.0.0.1 localhost 255.255.255.255 broadcasthost ::1 localhost fe80::1%lo0 localhost [[IP ADDRESS]] yourdomain.com [[IP ADDRESS]] www.yourdomain.comTip: Press i to enter insert mode so you can type and copy/paste. Press Esc to exit insert mode when you are done modifying the file. Type :wq to save and quit. -
Step 6 of 7
Restart any currently open web browsers and you may also want to flush your DNS cache.dscacheutil -flushcache -
Step 7 of 7
You will now be able to view the website on your new server while keeping the domain pointing to its existing hosting.