I've installed wamp 2.5 on Windows 7. I created a virtual host and I can access normally on my machine. But every other machine in LAN keeps getting "Forbidden" error. I have these settings on my httpd-vhosts.conf .
<VirtualHost *:80>
DocumentRoot "c:/wamp/www"
ServerName localhost
ServerAlias localhost
<Directory "c:/wamp/www">
AllowOverride All
Require local
</Directory>
</VirtualHost>
#virtualHost that I want to make available in LAN
<VirtualHost *:80>
DocumentRoot "c:/wamp/www/medenuncia/public"
ServerName medenuncia.local
<Directory "c:/wamp/www/medenuncia/public">
AllowOverride none
Require all granted
</Directory>
</VirtualHost>
I've already searched similar questions but none worked for me. Any ideas will be much appreciated.