aboutsummaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-10-06 13:20:12 +0200
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-10-06 13:20:12 +0200
commitd67da9fd0f5fd21e0438d6676d7353342a517bea (patch)
tree9f69695ce428661660fa155b8100075c32ade4c9 /.htaccess
parent9b3a44f070b1355a516849a33d23424416605cf1 (diff)
new feature access control (requires .ht* in each dir)
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess5
1 files changed, 5 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
new file mode 100644
index 0000000..01447f6
--- /dev/null
+++ b/.htaccess
@@ -0,0 +1,5 @@
+<Files ~ "^\.ht.*">
+ deny from all
+ satisfy all
+ ErrorDocument 403 "You are not allowed to access .ht* files!"
+</Files>