+Just before passing a request to the configured FastCGI server, the core of
+the web server sets a number of environment variables based on details of the
+current request. FastCGI programs often uses these environment variables
+as inputs that determine what underlying scripts they will process, or what
+output they directly produce.
+Examples of noteworthy environment variables are:
+
+ - SCRIPT_NAME
+ - SCRIPT_FILENAME
+ - REQUEST_URI
+ - PATH_INFO
+ - PATH_TRANSLATED
+
+
+This directive allows the environment variables above, or any others of
+interest, to be overridden. This directive is evaluated after the initial
+values for these variables are set, so they can be used as input into both
+the condition expressions and value expressions.
+Parameter syntax:
+
+- conditional-expression
+- Specifies an expression that controls whether the environmen variable that
+ follows will be modified. For information on the expression syntax, see
+ the examples that follow or the full specification at the
+ ap_expr documentation.
+
+- environment-variable-name
+- Specifies the CGI environment variable to change,
+ such as PATH_INFO.
+- value-expression
+- Specifies the replacement value for the preceding environment variable. Backreferences, such as "$1",
+can be included from regular expression captures in conditional-expression
+
+
+
+# A basic, unconditional override
+ProxyFCGISetEnvIf "true" PATH_INFO "/example"
+
+# Use an environment variable in the value
+ProxyFCGISetEnvIf "true" PATH_INFO "%{reqenv:SCRIPT_NAME}"
+
+# Use captures in the conditions and backreferences in the replacement
+ProxyFCGISetEnvIf "reqenv('PATH_TRANSLATED') =~ m#(/.*prefix)(\d+)(.*)#" PATH_TRANSLATED "$1$3"
+
+
+
+