From bcb76dc72a5b7a6ae629c59beb9c32266c0320d8 Mon Sep 17 00:00:00 2001 From: HungryFeline Date: Sun, 12 Mar 2017 00:50:40 +0100 Subject: [PATCH] Update .htaccess Apache 2.4 compatibility --- app/lib/.htaccess | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/app/lib/.htaccess b/app/lib/.htaccess index d72d47d..f0ef42d 100644 --- a/app/lib/.htaccess +++ b/app/lib/.htaccess @@ -1,4 +1,11 @@ -Order Deny,Allow -Deny from all - \ No newline at end of file + # Apache 2.2 + + Order Deny,Allow + Deny from all + + # Apache 2.4 + + Require all denied + +