diff options
author | emkael <emkael@tlen.pl> | 2018-11-14 23:50:22 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-11-14 23:50:22 +0100 |
commit | 3abb3c0eb3a36e43cd961b607d465a8ff713f7e7 (patch) | |
tree | 602e583a98be9c6ef041d24583e8bf0472e0416b | |
parent | 09a0b4c29de0b0cfc80861618a246a4afdaca1c3 (diff) |
Leaving only Apache 2.2 directives in .htaccess
-rw-r--r-- | tdd/.htaccess | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/tdd/.htaccess b/tdd/.htaccess index fad82c6..a5e3503 100644 --- a/tdd/.htaccess +++ b/tdd/.htaccess @@ -1,16 +1,6 @@ <Files tdd-protocol.php> - <IfModule !mod_authz_core.c> # Apache 2.2 - Order allow,deny - Allow from all - </IfModule> - <IfModule mod_authz_core.c> # Apache 2.4 - Require all granted - </IfModule> -</Files> -<IfModule !mod_authz_core.c> # Apache 2.2 Order allow,deny - Deny from all -</IfModule> -<IfModule mod_authz_core.c> # Apache 2.4 - Require all denied -</IfModule> + Allow from all +</Files> +Order allow,deny +Deny from all |