diff options
author | Jim Jagielski <jim@apache.org> | 2008-02-18 15:46:55 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2008-02-18 15:46:55 +0100 |
commit | d07c93a02e23b6a6636585d54fa0a305eb1e376b (patch) | |
tree | 182a2b6a9ae0ee2affdd21ed436e7cfe229a4130 /docs/manual/mod/mod_substitute.html.en | |
parent | http_filters: Don't send 100-continue when 4xx is due (diff) | |
download | apache2-d07c93a02e23b6a6636585d54fa0a305eb1e376b.tar.xz apache2-d07c93a02e23b6a6636585d54fa0a305eb1e376b.zip |
Update doccos
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@628762 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_substitute.html.en')
-rw-r--r-- | docs/manual/mod/mod_substitute.html.en | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/manual/mod/mod_substitute.html.en b/docs/manual/mod/mod_substitute.html.en index bf12fef380..aabbe860d8 100644 --- a/docs/manual/mod/mod_substitute.html.en +++ b/docs/manual/mod/mod_substitute.html.en @@ -43,7 +43,7 @@ <div class="directive-section"><h2><a name="Substitute" id="Substitute">Substitute</a> <a name="substitute" id="substitute">Directive</a></h2> <table class="directive"> <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Pattern to filter the response content</td></tr> -<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Substitute <var>s/pattern/substitution/[inf]</var></code></td></tr> +<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Substitute <var>s/pattern/substitution/[infq]</var></code></td></tr> <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr> <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr> <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Experimental</td></tr> @@ -65,7 +65,14 @@ <dt><code>f</code></dt> <dd>The <code>f</code> flag causes mod_substitute to flatten the result of a substitution allowing for later substitutions to - take place on the boundary of this one.</dd> + take place on the boundary of this one. This is the default.</dd> + <dt><code>q</code></dt> + <dd>The <code>q</code> flag causes mod_substitute to not + flatten the buckets after each substitution. This can + result in much faster response and a decrease in memory + utilization, but should only be used if there is no possibility + that the result of one substitution will ever match a pattern + or regex of a subsequent one.</dd> </dl> <div class="example"><h3>Example</h3><p><code> |