By default wamp sets the following as the default for any directory not explicitly declared:
<Directory />
AllowOverride none
Require all denied
</Directory>
For me, if I comment out the line that says Require all denied
I started having access to the directory in question. I don't recommend this.
Instead in the directory directive I included Require local
as below:
<Directory "C:/GitHub/head_count/">
AllowOverride All
Allow from all
Require local
</Directory>
NOTE: I was still getting permission denied when I only had Allow from all
. Adding Require local
helped for me.