Here's the problem I'm facing: I've added multiple virtual hosts(name based) to apache yet still only one is loaded.
For example I have two domains with different contents.
Site1 Domain -> Site1 Content
Site2 Domain -> Site1 Content aswell..
I've included the httpd-vhosts file in the httpd config file, and I've edited it to match what it asks me to do on their documentation yet still only one folder of contents is served.
Here is my httpd-vhosts file, the httpd file I assume doesn't need posting but if required I shall:
NameVirtualHost *
<Directory "C:/www/">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<VirtualHost *>
ServerName www.*****.com
DocumentRoot "C:\www*****"
</VirtualHost>
<VirtualHost *>
ServerName ****.co.cc
DocumentRoot "C:\www\****"
</VirtualHost>
ofcourse I removed the unnecessary comments and my domains names(private reasons). Oh yeah, and my server is hosted on Windows Server 2008 Standard