You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2011/10/25 02:58:11 UTC

svn commit: r1188474 - /httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en

Author: rbowen
Date: Tue Oct 25 00:58:11 2011
New Revision: 1188474

URL: http://svn.apache.org/viewvc?rev=1188474&view=rev
Log:
Rebuild HTML

Modified:
    httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en

Modified: httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en?rev=1188474&r1=1188473&r2=1188474&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/avoid.html.en Tue Oct 25 00:58:11 2011
@@ -205,7 +205,7 @@ hostname, such as <code>www.example.com<
 <code>example.com</code>. This can be done using the <code class="directive"><a href="../mod/core.html#if">&lt;If&gt;</a></code> directive, as shown here:</p>
 
 <div class="example"><p><code>
-&lt;If "$req{Host} = 'example.com'"&gt;<br />
+&lt;If "$req{Host} != 'www.example.com'"&gt;<br />
 RedirectMatch (.*) http://www.example.com$1<br />
 &lt;/If&gt;
 </code></p></div>