From: Eric Covener Date: Thu, 26 Jul 2018 19:51:52 +0000 (+0000) Subject: xform X-Git-Tag: 2.4.35~121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38de5ff02be3e103212938de6c8f5655d8d91189;p=thirdparty%2Fapache%2Fhttpd.git xform git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1836761 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/expr.html.en b/docs/manual/expr.html.en index defcd92a647..53debda400b 100644 --- a/docs/manual/expr.html.en +++ b/docs/manual/expr.html.en @@ -576,7 +576,11 @@ listfunction ::= listfuncname "(" word ")" +Header always set CustomHeader my-value "expr=%{REQUEST_URI} =~ m#^/special_path\.php$#" + +# Conditional logging +CustomLog logs/access-errors.log common "expr=%{REQUEST_STATUS} >= 400" +CustomLog logs/access-errors-specific.log common "expr=%{REQUEST_STATUS} -in {'405','410'}"
top