diff options
Diffstat (limited to 'application/cache')
-rw-r--r-- | application/cache/.htaccess | 7 | ||||
-rw-r--r-- | application/cache/index.html | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/application/cache/.htaccess b/application/cache/.htaccess index 14249c50b..6c63ed4c4 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 !authz_core_module> + Deny from all +</IfModule>
\ No newline at end of file diff --git a/application/cache/index.html b/application/cache/index.html index c942a79ce..b702fbc39 100644 --- a/application/cache/index.html +++ b/application/cache/index.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <title>403 Forbidden</title> @@ -7,4 +8,4 @@ <p>Directory access is forbidden.</p> </body> -</html>
\ No newline at end of file +</html> |