Working With The HOSTS File: Difference between revisions
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
== Using .bat Files to Update HOSTS automatically == | == Using .bat Files to Update HOSTS automatically == | ||
Coming soon... | Coming soon... | ||
[[Category: Support]] | |||
[[Category: Troubleshooting ]] | |||
[[Category: Application]] | |||
[[Category: Development]] |
Latest revision as of 02:37, 16 May 2008
Modifying the HOSTS file on your computer will allow you to use the VirtualHost tool to run multiple development servers at the same time, without having to restart the server each time.
Suggested Setup
Suppose we create virtual hosts based off localhost, so we'll have the main domain, localhost and the subdomains example.localhost, test.localhost, and foobar.localhost. These have been setup properly in the httpd.conf file, however until the HOSTS file is configured properly. Navigate to your HOSTS file (normally in C:\WINDOWS\System32\drivers\etc\HOSTS) and add the following lines:
example.localhost 127.0.0.1
test.localhost 127.0.0.1
foobar.localhost 127.0.0.1
Now those subdomains will point to the Virtual Host on your server.
Using .bat Files to Update HOSTS automatically
Coming soon...