summaryrefslogtreecommitdiffstats
path: root/.htaccess
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-03-11 17:49:24 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2015-03-11 17:49:24 +0100
commitb70bdeb2ed17a03e1a24b37cb0a61d66d868522d (patch)
treef123f4b0abe8f9a585ab7ac37512febffb6e2a97 /.htaccess
parent64ad8e38d4e984b216a67d22f147921d1efaaa60 (diff)
downloadbugzilla-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--.htaccess7
1 files changed, 6 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index 2f009697c..aec901005 100644
--- a/.htaccess
+++ b/.htaccess
@@ -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>