Link to home
Start Free TrialLog in
Avatar of hankknight
hankknightFlag for Canada

asked on

VirtualHost troubles

I want
      silvergold.com
to go to:
      c:/wamp/www/silverGold/

I want everthing else to go to:
      c:/wamp/www/

My code sends EVERYTHING to
      c:/wamp/www/silverGold/


<VirtualHost *:80>
    ServerName silvergold.com
	ServerAlias *.silvergold.com
    DocumentRoot c:/wamp/www/silverGold/
</VirtualHost>
 
<VirtualHost *:80>
    ServerName server.com
	ServerAlias *
    DocumentRoot c:/wamp/www/
</VirtualHost>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of caterham_www
caterham_www
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hankknight

ASKER

Adding Namevirtualhost solved it! Thanks.