summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMadhusudan Mathihalli <madhum@apache.org>2004-03-09 18:58:46 +0100
committerMadhusudan Mathihalli <madhum@apache.org>2004-03-09 18:58:46 +0100
commitff20e78b5146793c7559deb281ca9590231a4156 (patch)
tree7cdbc6b0731ea13c6caca40e042f14ffe356b4b2 /docs
parentEnable mod_rewrite to recognize SSL variables (using ssl_var_lookup) (diff)
downloadapache2-ff20e78b5146793c7559deb281ca9590231a4156.tar.xz
apache2-ff20e78b5146793c7559deb281ca9590231a4156.zip
Enable mod_rewrite to recognize SSL variables (using ssl_var_lookup)
Submitted by: Joe Orton Reviewed by: Madhusudan Mathihalli git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102905 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/mod/mod_rewrite.html.en8
-rw-r--r--docs/manual/mod/mod_rewrite.xml6
2 files changed, 13 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en
index 12aa6ec82d..bf1f6456f5 100644
--- a/docs/manual/mod/mod_rewrite.html.en
+++ b/docs/manual/mod/mod_rewrite.html.en
@@ -530,6 +530,7 @@ Result:
REQUEST_URI<br />
REQUEST_FILENAME<br />
IS_SUBREQ<br />
+ HTTPS<br />
</td>
</tr>
</table>
@@ -605,6 +606,11 @@ Result:
<code>getenv()</code> from the Apache server process.</li>
<li>There is the special format:
+ <code>%{SSL:variable}</code> where <em>variable</em> can be
+ any SSL environment variable. This is looked-up via internal
+ SSL structures from the Apache server process.</li>
+
+ <li>There is the special format:
<code>%{HTTP:header}</code> where <em>header</em> can be
any HTTP MIME-header name. This is looked-up from the HTTP
request. Example: <code>%{HTTP:Proxy-Connection}</code> is
@@ -1779,4 +1785,4 @@ RewriteRule ^/([^/]+)/~([^/]+)/(.*)$ /u/${real-to-user:$2|nobody}/$3.$1
</div><div id="footer">
<p class="apache">Copyright 1999-2004 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
<p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
-</body></html> \ No newline at end of file
+</body></html>
diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml
index 9d685efcb2..11f9414621 100644
--- a/docs/manual/mod/mod_rewrite.xml
+++ b/docs/manual/mod/mod_rewrite.xml
@@ -939,6 +939,7 @@ Result:
REQUEST_URI<br />
REQUEST_FILENAME<br />
IS_SUBREQ<br />
+ HTTPS<br />
</td>
</tr>
</table>
@@ -1014,6 +1015,11 @@ Result:
<code>getenv()</code> from the Apache server process.</li>
<li>There is the special format:
+ <code>%{SSL:variable}</code> where <em>variable</em> can be
+ any SSL environment variable. This is looked-up via internal
+ SSL structures from the Apache server process.</li>
+
+ <li>There is the special format:
<code>%{HTTP:header}</code> where <em>header</em> can be
any HTTP MIME-header name. This is looked-up from the HTTP
request. Example: <code>%{HTTP:Proxy-Connection}</code> is