From: Joshua Slive Date: Mon, 27 Jan 2003 00:49:59 +0000 (+0000) Subject: Be explicit about not creating redirect loops. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9f300d9f52b8b73d46706d320df5fcfd4e0e825;p=thirdparty%2Fapache%2Fhttpd.git 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 4ff79993d8e..5ff3a0cb220 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 e65251bdcee..9ecf52d3cb9 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