You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sl...@apache.org on 2003/01/27 01:49:59 UTC

cvs commit: httpd-2.0/docs/manual urlmapping.xml urlmapping.html.en

slive       2003/01/26 16:49:59

  Modified:    docs/manual urlmapping.xml urlmapping.html.en
  Log:
  Be explicit about not creating redirect loops.
  
  Revision  Changes    Path
  1.4       +3 -3      httpd-2.0/docs/manual/urlmapping.xml
  
  Index: urlmapping.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/urlmapping.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -d -b -u -r1.3 -r1.4
  --- urlmapping.xml	14 Sep 2002 15:03:14 -0000	1.3
  +++ urlmapping.xml	27 Jan 2003 00:49:59 -0000	1.4
  @@ -182,11 +182,11 @@
   <example>RedirectMatch permanent ^/$
         http://www.example.com/startpage.html</example>
   
  -    <p>Alternatively, to temporarily redirect all pages on a site
  -    to one particular page, use the following:</p>
  +    <p>Alternatively, to temporarily redirect all pages on one site
  +    to a particular page on another site, use the following:</p>
   
   <example>RedirectMatch temp .*
  -      http://www.example.com/startpage.html</example>
  +      http://othersite.example.com/startpage.html</example>
   </section>
   
   <section id="proxy"><title>Reverse Proxy</title>
  
  
  
  1.17      +3 -3      httpd-2.0/docs/manual/urlmapping.html.en
  
  Index: urlmapping.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/urlmapping.html.en,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -d -b -u -r1.16 -r1.17
  --- urlmapping.html.en	11 Dec 2002 21:33:36 -0000	1.16
  +++ urlmapping.html.en	27 Jan 2003 00:49:59 -0000	1.17
  @@ -168,11 +168,11 @@
   <div class="example"><p><code>RedirectMatch permanent ^/$
         http://www.example.com/startpage.html</code></p></div>
   
  -    <p>Alternatively, to temporarily redirect all pages on a site
  -    to one particular page, use the following:</p>
  +    <p>Alternatively, to temporarily redirect all pages on one site
  +    to a particular page on another site, use the following:</p>
   
   <div class="example"><p><code>RedirectMatch temp .*
  -      http://www.example.com/startpage.html</code></p></div>
  +      http://othersite.example.com/startpage.html</code></p></div>
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
   <div class="section">
   <h2><a name="proxy" id="proxy">Reverse Proxy</a></h2>