From 72d7c6c45a64832d72a69944285341c19e71c2d2 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Wed, 26 Nov 2014 19:05:12 +0000 Subject: [PATCH] add a few more expresion examples to illustrate functions and -f git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1641888 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/expr.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml index 5bb6f5ee24..e386ff51ac 100644 --- a/docs/manual/expr.xml +++ b/docs/manual/expr.xml @@ -580,6 +580,18 @@ listfunction ::= listfuncname "(" word ")" Header set matched true </If> +# Check an environment variable for a regular expression, negated. +<If "! reqenv('REDIRECT_FOO') =~ /bar/"> + Header set matched true +</If> + +# Check result of URI mapping by running in Directory context with -f +<Directory /var/www> + AddEncoding x-gzip gz +<If "-f '%{REQUEST_FILENAME}.unzipme' && ! %{HTTP:Accept-Encoding} =~ /gzip/"> + SetOutputFilter INFLATE +</If> +</Directory> -- 2.40.0