diff options
author | Rich Bowen <rbowen@apache.org> | 2010-11-08 22:21:06 +0100 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2010-11-08 22:21:06 +0100 |
commit | 7d4c8097c4cd712f76f11e974bfef4b2a43169ab (patch) | |
tree | d497a1095166f03c3c544439747140d9d47b2d5e /docs/manual/ssl | |
parent | Fixes PR47236 - Using : or @ in a URL already means something else, and (diff) | |
download | apache2-7d4c8097c4cd712f76f11e974bfef4b2a43169ab.tar.xz apache2-7d4c8097c4cd712f76f11e974bfef4b2a43169ab.zip |
Rebuild SSL FAQ.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1032724 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/ssl')
-rw-r--r-- | docs/manual/ssl/ssl_faq.html.en | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/ssl/ssl_faq.html.en b/docs/manual/ssl/ssl_faq.html.en index c5557e28af..9a80da45c9 100644 --- a/docs/manual/ssl/ssl_faq.html.en +++ b/docs/manual/ssl/ssl_faq.html.en @@ -175,12 +175,12 @@ relative hyperlinks?</a></li> manipulate relative hyperlinks, to achieve the same effect.</p> <div class="example"><p><code> RewriteEngine on<br /> - RewriteRule ^/(.*):SSL$ https://%{SERVER_NAME}/$1 [R,L]<br /> - RewriteRule ^/(.*):NOSSL$ http://%{SERVER_NAME}/$1 [R,L] + RewriteRule ^/(.*)_SSL$ https://%{SERVER_NAME}/$1 [R,L]<br /> + RewriteRule ^/(.*)_NOSSL$ http://%{SERVER_NAME}/$1 [R,L] </code></p></div> <p>This rewrite ruleset lets you use hyperlinks of the form - <code><a href="document.html:SSL"></code>, to switch to HTTPS + <code><a href="document.html_SSL"></code>, to switch to HTTPS in a relative link. (Replace SSL with NOSSL to switch to HTTP.)</p> </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> |