summaryrefslogtreecommitdiffstats
path: root/docs/manual/ssl
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2010-11-08 22:21:06 +0100
committerRich Bowen <rbowen@apache.org>2010-11-08 22:21:06 +0100
commit7d4c8097c4cd712f76f11e974bfef4b2a43169ab (patch)
treed497a1095166f03c3c544439747140d9d47b2d5e /docs/manual/ssl
parentFixes PR47236 - Using : or @ in a URL already means something else, and (diff)
downloadapache2-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.en6
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>&lt;a href="document.html:SSL"&gt;</code>, to switch to HTTPS
+ <code>&lt;a href="document.html_SSL"&gt;</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>