How to Edit Your Hosts File

June 28, 2017 / How-to Guide

Editing your host’s file overrides the DNS entries for any domain by resolving that domain to the IP address of your choice, this change only affects the computer you are making the change on which makes it very useful for testing websites, for example when performing a migration.

Edit hosts file on Windows 8, 8.1 and 10

  1. From your start menu locate Notepad, right-click and select Run as administrator (You may be asked to enter your administrator password at this point)
    Run as administrator
  2. From Notepad select Select file > open
  3. Navigate to C:\Windows\System32\drivers\etc (this assumes Windows has been installed to the default directory)
    filename
  4. To the right of Filename select All Files (*.*)
  5. Open the file named hosts
  6. Create a new line at the bottom and enter the IP address of your new website followed by the domain name, for example:
    192.168.0.10 myeukwebsite.co.uk www.myeukwebsite.co.ukedit hosts file

    Note: Wildcard entries are not supported within the host’s file, in the example above we have included both the non-www and www versions of the domain.

  7. Select File > save

The change is immediate, now when you enter your domain into your browser it will resolve to your new website and allow you to test your site before going live.

Disable your hosts File Entries

If you need to revert so your domain points at the original IP you can either delete the line you entered and save or you can comment it out by prefixing the line with # which allows you to easily switch between your old and new sites for testing.

hosts_file_comment

As soon as you save the change will take effect.

Using Linux or macOS?

The host file and syntax used are standard across almost all operating systems, on Linux or macOS you can find the host file here: /etc/hosts

Once you know where the hosts file is and how to edit it, you can easily update the host entry for Windows for web development purposes.

 

Spread the love