getting ErrorDocument to perform a "hard" redirect
am 01.04.2010 00:59:16 von E R
Hi everyone,
I'd like to have:
ErrorDocument 404 /some/local/url
perform a hard redirect (i.e. it actually sends a 302 back to the client.)
I don't want to specify a full url like this:
ErrorDocument 404 http://some.host:8888/some/local/url
because I don't want to have to inject the host, port and even
http/https into the Apache configuration file.
The only way I can think of doing this is through a combination of
ErrorDocument and mod_rewrite:
ErrorDocument 404 /local-redirect/some/local/url
RewriteRule /local-redirect(/.*) $1 [some flags...]
Just want to make sure I'm not overlooking something (like % macros
which expand to method, host and port of the current request).
btw - I'm using Apache 1.3.41
Thanks,
ER
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: getting ErrorDocument to perform a "hard" redirect
am 01.04.2010 03:46:46 von Nilesh Govindrajan
On 04/01/10 04:29, E R wrote:
> Hi everyone,
>
> I'd like to have:
>
> ErrorDocument 404 /some/local/url
>
> perform a hard redirect (i.e. it actually sends a 302 back to the client.)
>
> I don't want to specify a full url like this:
>
> ErrorDocument 404 http://some.host:8888/some/local/url
>
> because I don't want to have to inject the host, port and even
> http/https into the Apache configuration file.
>
> The only way I can think of doing this is through a combination of
> ErrorDocument and mod_rewrite:
>
> ErrorDocument 404 /local-redirect/some/local/url
>
> RewriteRule /local-redirect(/.*) $1 [some flags...]
>
> Just want to make sure I'm not overlooking something (like % macros
> which expand to method, host and port of the current request).
>
> btw - I'm using Apache 1.3.41
>
> Thanks,
> ER
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
I didn't understand your problem clearly, but I think you're looking for
RedirectMatch.
--
Nilesh Govindarajan
Site & Server Administrator
www.itech7.com
मà¥à¤°à¤¾ à¤à¤¾à¤°à¤¤ महान !
मम à¤à¤¾à¤°à¤¤: महतà¥à¤¤à¤® à¤à¤µà¤¤à¥ !
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org