I have an internal server that we get to by just typing in http://ServerStats/ and it will take you to the webpages. However I want to create a http://dev.ServerStats/ so that I can keep development seperate from production. It appears anytime I make a change with my virtual hosts it will mess up http://serverstats/. It now appears that http://ServerStats/ is now directing to the path that dev.serverstats should be routing too.
I have vhosts.conf included in httpd.conf.
Here is my vhosts.conf file
I have vhosts.conf included in httpd.conf.
Here is my vhosts.conf file
Code:
NameVirtualHost *:80 <VirtualHost *:80> ServerName dev.servertstats DocumentRoot "E:/www/apache/htdocs/htdev" </VirtualHost>
Comment