From: André Malo Date: Fri, 4 Apr 2003 22:35:18 +0000 (+0000) Subject: If an errordocument-cgi responds a location header it should really X-Git-Tag: pre_ajp_proxy~1915 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58947bcd7c54f897ca30da3f941643f6c03399ae;p=thirdparty%2Fapache%2Fhttpd.git If an errordocument-cgi responds a location header it should really add a status header. PR: 18332 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99216 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/custom-error.html.en b/docs/manual/custom-error.html.en index 96bfa676a2b..2833fd5ca88 100644 --- a/docs/manual/custom-error.html.en +++ b/docs/manual/custom-error.html.en @@ -178,6 +178,12 @@

If the script is dedicated to handling a particular error condition, such as 404 Not Found, it can use the specific code and error text instead.

+ +

Note that the script must emit an appropriate + Status: header (such as 302 Found), if the + response contains a Location: header (in order to issue a + client side redirect). Otherwise the Location: header may + have no effect.