summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess13
1 files changed, 13 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
index 22b33f000..bdf8c2015 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,3 +1,16 @@
AddType image/svg+xml svg
AddType image/svg+xml svgz
+# PROTECT all htaccess files
+<Files ~ "^[\._]ht">
+ Order Allow,Deny
+ Deny from all
+ Satisfy All
+</Files>
+
+# PROTECT config.php
+<files config.php>
+ Order Allow,Deny
+ Deny from all
+ Satisfy all
+</files> \ No newline at end of file