Hi there,
I have an Apache 2.0 running on localhost.
My default DocumentRoot is set to:
DocumentRoot "H:/apache2.0/Apache2/htdocs"
I'm trying to use virtual hosting (for
testing), and I've got the following settings:
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1>
DocumentRoot "c:/mywebpage"
ServerName localhost
</VirtualHost>
Now when I type "http://localhost" in my browser, apache still serves the index page from the default DocumentRoot !
Why's this ?
Thanks everyone
Dennis