diff options
author | Jan Wagner <waja@cyconet.org> | 2015-10-05 22:35:51 +0200 |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2015-10-05 22:46:30 +0200 |
commit | d85741a3a13c558942d655d0b161e2d642a70d6c (patch) | |
tree | 11b477f4ddd18972beb2bb00dab097670a5dd666 /app/.htaccess | |
parent | 92cf7f4df60e3d6105dae5c6c78d58b1577a3f58 (diff) |
.htaccess: Add compatibility for apache 2.4
Diffstat (limited to 'app/.htaccess')
-rw-r--r-- | app/.htaccess | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/.htaccess b/app/.htaccess index 14249c50..c47998cb 100644 --- a/app/.htaccess +++ b/app/.htaccess @@ -1 +1,7 @@ -Deny from all
\ No newline at end of file +<IfVersion >= 2.3> + Require all denied +</IfVersion> +<IfVersion < 2.3> + Order allow,deny + Deny from all +</IfVersion> |