Updated .htaccess files with Apache 2.4+ safe deny statements. Fixes #1631
diff --git a/application/cache/.htaccess b/application/cache/.htaccess
index 3418e55..ae1d1e6 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