From: Joshua Slive Date: Mon, 27 Jan 2003 00:49:59 +0000 (+0000) Subject: Be explicit about not creating redirect loops. X-Git-Tag: pre_ajp_proxy~2209 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=22c556a2e221e0b7e9465f8959144049e3c5e87a;p=apache Be explicit about not creating redirect loops. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98507 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/urlmapping.html.en b/docs/manual/urlmapping.html.en index 4ff79993d8..5ff3a0cb22 100755 --- a/docs/manual/urlmapping.html.en +++ b/docs/manual/urlmapping.html.en @@ -168,11 +168,11 @@

RedirectMatch permanent ^/$ http://www.example.com/startpage.html

-

Alternatively, to temporarily redirect all pages on a site - to one particular page, use the following:

+

Alternatively, to temporarily redirect all pages on one site + to a particular page on another site, use the following:

RedirectMatch temp .* - http://www.example.com/startpage.html

+ http://othersite.example.com/startpage.html

top

Reverse Proxy

diff --git a/docs/manual/urlmapping.xml b/docs/manual/urlmapping.xml index e65251bdce..9ecf52d3cb 100644 --- a/docs/manual/urlmapping.xml +++ b/docs/manual/urlmapping.xml @@ -182,11 +182,11 @@ RedirectMatch permanent ^/$ http://www.example.com/startpage.html -

Alternatively, to temporarily redirect all pages on a site - to one particular page, use the following:

+

Alternatively, to temporarily redirect all pages on one site + to a particular page on another site, use the following:

RedirectMatch temp .* - http://www.example.com/startpage.html + http://othersite.example.com/startpage.html
Reverse Proxy