I have the following two sections in my agache2.conf file.
<Directory />
Options FollowSymLinks +Indexes
AllowOverride None
Order allow,deny
Deny from all
</Directory>
and
<VirtualHost *:80>
DocumentRoot "/home/bernie/development/public2"
ServerName myfl2.local
<Directory /home/aaaa/development/public2>
AllowOverride None
#Options FollowSymLinks +Indexes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
The following file exists with some content:
/home/bernie/development/public2/a/a/index.html
For some reason, trying to access
myfl2.local/a/a/index.html
I get a "403 Forbidden" error. I've narrowed the problem down to the line "Deny from all" in the first directory section above, but I can't figure out how to keep that (as it's a very important directive) and allow access to public2/a/a directory. Anyone have any idea how to fix that?