Setup a Virtual Host on WAMP Running several name-based web sites on a single IP address. Step 1: Add Code in file C:\wamp\bin\apache\apache2.4.9\conf\httpd.conf uncomment the LoadModule vhost_alias_module modules/mod_vhost_alias.so uncomment the Include conf/extra/httpd-vhosts.conf Step 2: Add VirtualHost code in file C:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf # Ensure that Apache listens on port 80 Listen 80 <VirtualHost *:80> ServerAdmin sudhir@techsudhir.com DocumentRoot "C:/wamp/www/wordpress" ServerName techsudhir.local ServerAlias www.techsudhir.local ErrorLog "logs/techsudhir.local-error.log" CustomLog "logs/techsudhir.local-access.log" common <Directory "/"> Deny from all Allow from 127.0.0.1 </Directory> </VirtualHost> Save All Step 3: Add Code in file C:\Windows\System32\drivers\etc\hosts 127.0.0.1 techsudhir.local...
Coding Cheatsheets - Learn web development code and tutorials for Software developers which will helps you in project. Get help on JavaScript, PHP, XML, and more.