summaryrefslogtreecommitdiffstats
path: root/application/cache
diff options
context:
space:
mode:
authorAlex Bilbie <alex@alexbilbie.com>2012-07-17 19:43:00 +0200
committerAlex Bilbie <alex@alexbilbie.com>2012-07-17 19:43:00 +0200
commit6697cf0c64d34992f8b2a97383d582b2fbf66b1f (patch)
tree1b608745cd61756ff941ea0d8b52781776e64fc5 /application/cache
parentafee226aa4487b3645fb916f99b4cf7f012af536 (diff)
Updated .htaccess files with Apache 2.4+ safe deny statements. Fixes #1631
Diffstat (limited to 'application/cache')
-rw-r--r--application/cache/.htaccess7
1 files changed, 6 insertions, 1 deletions
diff --git a/application/cache/.htaccess b/application/cache/.htaccess
index 3418e55a6..ae1d1e6fb 100644
--- a/application/cache/.htaccess
+++ b/application/cache/.htaccess
@@ -1 +1,6 @@
-deny from all \ No newline at end of file
+<IfModule authz_core_module>
+ Require all denied
+</IfModule>
+<IfModule access_compat_module>
+ Deny from all
+</IfModule> \ No newline at end of file