While configuring some virtual hosts for local development, I had some trouble with 403 forbidden error. (Apache/2.2.22)
Fix: add this to your virtualhost
1 2 3 4 5 6 7 8 9 10 11 |
<Directory /path/to/document/root/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all AuthType None Satisfy Any Require all granted </Directory> |
Also make sure the document root folder has search permissions (755 is fine)