I've got WAMP 3.2 working fine locally, I can access my site using localhost or another virtualhost name I've created, however when trying to access remotely I get "This site can't be reached" error unless I use the server IP address (i.e. "192.168.0.81/Euro") and then it's fine.
I see this is a question that's asked quite a bit, and I've done everything suggested but still no luck.
This is what my httpd-vhosts.conf file looks like:
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
Allow from all
</Directory>
</VirtualHost>
#
<VirtualHost *:80>
ServerName euroscore.local
DocumentRoot "c:/wamp64/www/euro"
<Directory "c:/wamp64/www/euro/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
Allow from all
</Directory>
</VirtualHost>
Any suggestiosn to get this working is appreciated. I really need to have remote access from devices using one of the virtual hosts names instead of the IP address of the server hosting WAMP.
I'm also concious that I should change this to Allow from local but I didn't want to limit my chances of success while fault finding. I'm restarting all services between changes.
Dan