Forbidden: You don't have permission to access on this server, Wampserver Error - idmwy/HoloLens GitHub Wiki

I have installed Wampserver(3.1.764-bit) on windows 10 and received above error whenever I go to other machine rather than localhost. After much searching I found many answers which includes modifying the httpd.conf to Allow from All etc only works on localhost. However, Wampserver 3 has a different method.

In version 3 and > of Wampserver there is a Virtual Hosts predefined for localhost so don't amend the httpd.conf file at all, leave it as you found it.

Using the menus, edit the httpd-vhosts.conf file.

It should look like this :

# Virtual Hosts
#
<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>

Amend it to (local -> all granted)

# 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
  </Directory>
</VirtualHost>

Don't forget to restart All Services of WAMP or Apache after making this change

You may access the server from any machines now.

⚠️ **GitHub.com Fallback** ⚠️