[eluser]Unknown[/eluser]
Took me a while, and none of the solutions in here worked.
But, I found a solution!
To anyone using html5boilerplate to generate .htaccess, do this:
Lines 346 to 350 are enabled by default in the .htaccess by html5boilerplate. You have to comment them out to get rid of the error:
Code:
# <IfModule mod_rewrite.c>
# RewriteCond %{SCRIPT_FILENAME} -d [OR]
# RewriteCond %{SCRIPT_FILENAME} -f
# RewriteRule "(^|/)\." - [F]
# </IfModule>
Fixed it for me :-).