diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-03-11 17:49:24 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-03-11 17:49:24 +0100 |
commit | b70bdeb2ed17a03e1a24b37cb0a61d66d868522d (patch) | |
tree | f123f4b0abe8f9a585ab7ac37512febffb6e2a97 /.htaccess | |
parent | 64ad8e38d4e984b216a67d22f147921d1efaaa60 (diff) | |
download | bugzilla-b70bdeb2ed17a03e1a24b37cb0a61d66d868522d.tar.gz bugzilla-b70bdeb2ed17a03e1a24b37cb0a61d66d868522d.tar.xz |
Bug 1138463: mod_perl does not support Apache 2.4 directives
r=dkl a=glob
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -5,7 +5,12 @@ Deny from all </IfVersion> <IfVersion >= 2.4> - Require all denied + <IfModule mod_perl.c> + Deny from all + </IfModule> + <IfModule !mod_perl.c> + Require all denied + </IfModule> </IfVersion> </IfModule> <IfModule !mod_version.c> |