Fix Forbidden You don't have permission to access / on this server on Apache

0 votes
260 views
added Nov 15, 2017 in Domain & hosting by LC Marshal Captain (25,790 points)
  1. Open C:\wamp64\bin\apache\apache2.4.23\conf\extra\httpd-vhosts.conf
  2. Change Require local to Require all granted.
    1. <VirtualHost *:80>
        ServerName localhost
        DocumentRoot c:/wamp64/www
        <Directory  "c:/wamp64/www/">
          Options +Indexes +Includes +FollowSymLinks +MultiViews
          AllowOverride All
          Require all granted
        </Directory>
      </VirtualHost>

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...