I am trying to get two subdomains setup. I have copied the settings below. The problem is that all requests (even for second subdomain) are being served by first subdomain. e.g. if I type in a URL http://mydomain.com, the file served is from "C:/mydomain/test" and not from "C:/mydomain/www" as I would expect.

Please help. What am I doing wrong?


My hosts file has these entries:
************************************************
127.0.0.1       mydomain.com
127.0.0.1       test.mydomain.com
************************************************


My httpd.conf file has these entries:
************************************************
NameVirtualHost *

<Directory "C:/mydomain/test">
    Options None
    Order allow,deny
    Allow from all
</Directory>
<VirtualHost *>
        ServerName test.mydomain.com
        DocumentRoot C:/mydomain/test
</VirtualHost>


<Directory "C:/mydomain/www">
    Options None
    Order allow,deny
    Allow from all
</Directory>

<VirtualHost *>
        ServerName www.mydomain.com
        DocumentRoot C:/mydomain/www

</VirtualHost>
************************************************


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to