View Single Post
Old 01-10-2008, 05:41 PM   #9 (permalink)
xenon
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

Quote:
Originally Posted by sketchMedia View Post
in your windows host file located 'C:\WINDOWS\system32\drivers\etc' add:
Code:
 127.0.0.1        testzone
if you want http://testzone to goto your loopback '127.0.0.1'
That alone won't do. You also need to create a virtual host for Apache.

Code:
<VirtualHost *:80>
    DocumentRoot "/var/www/someotherhostfiles"
    ServerName someotherhost
</VirtualHost>
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
xenon is offline  
Reply With Quote