1. I uncommented the "Include conf/extra/httpd-vhosts.conf line in httpd.conf file
2. add the necessary code to httpd-vhosts.conf file..like this.
(my normal localhost is localhost:8080)
<VirtualHost *:8080>
Servername myproject.com
DocumentRoot c:/wamp64/www/myproject
<Directory "c:/wamp64/www/myproject'>
Options +Indexex + Includes + FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directroy>
<VirtualHost>
3. then I changed the host file windows.(using administrative privileges)
127.0.0.1 myproject.com
4. after restarting the wamp server I went to chrome and typed myproject.com
but browser says Not Found (HTTP Error 404. The requested resource is not found)
please help me to solve my problem
2. add the necessary code to httpd-vhosts.conf file..like this.
(my normal localhost is localhost:8080)
<VirtualHost *:8080>
Servername myproject.com
DocumentRoot c:/wamp64/www/myproject
<Directory "c:/wamp64/www/myproject'>
Options +Indexex + Includes + FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directroy>
<VirtualHost>
3. then I changed the host file windows.(using administrative privileges)
127.0.0.1 myproject.com
4. after restarting the wamp server I went to chrome and typed myproject.com
but browser says Not Found (HTTP Error 404. The requested resource is not found)
please help me to solve my problem