Added htaccess to forbid access to configuration

This commit is contained in:
Stefan Ritter 2010-03-04 16:20:23 +01:00
parent d6eb14bda5
commit a5d0c8d7bd
1 changed files with 14 additions and 0 deletions

14
.htaccess Normal file
View File

@ -0,0 +1,14 @@
<Files ~ "^configuration$">
Order allow,deny
Deny from all
</Files>
<Files ~ "^\.blogthonrc$">
Order allow,deny
Deny from all
</Files>
<Files ~ "^blogthonrc$">
Order allow,deny
Deny from all
</Files>