It looks like you have a rule somewhere in your apache file that denies access to files starting with . . This is usually a good thing, since many sensitive files start with dots (for example: .htaccess, .svn, .git, .htpasswd, etc. Etc.).
You may be able to work around the problem like this:
<FilesMatch "^\.html"> Order allow,deny Allow from all </Files>
Disclaimer This is like a hack. I don't know what you're trying to do, but there is probably a cleaner, less error prone way to do this.
source share