Why would an .htaccess file result in 403 Forbidden when the only line is "Allow from all"?
Order Allow,Deny
Allow from all
For me, the problem was indeed file permissions as per Itamake's comment, so I fixed it with:
chmod -R 755 *
Order Allow,Deny
Allow from all
For me, the problem was indeed file permissions as per Itamake's comment, so I fixed it with:
chmod -R 755 *