How to make multiple sites on WAMP

1.Open C:\wamp\bin\apache\Apache2.2.21\conf\httpd.conf 2.Uncomment this line # Include conf/extra/httpd-vhosts.conf to this Include conf/extra/httpd-vhosts.conf 3.Open C:\wamp\bin\apache\Apache2.2.21\conf\extra\httpd-vhosts.conf add at bottom <VirtualHost *:80> ServerAdmin webmaster@dummy-host.example.com DocumentRoot “c:/wamp/www” ServerName localhost ErrorLog “logs/error.log” CustomLog “logs/access.log” common </VirtualHost> <VirtualHost *:80> ServerAdmin webmaster@dummy-host.example.com DocumentRoot “c:/wamp/www/web1” ServerName web1 ErrorLog…

Read More