You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by E R <pc...@gmail.com> on 2010/04/01 00:59:16 UTC

[users@httpd] getting ErrorDocument to perform a 'hard' redirect

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 <URL:http://httpd.apache.org/userslist.html> 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: [users@httpd] getting ErrorDocument to perform a 'hard' redirect

Posted by Nilesh Govindarajan <li...@itech7.com>.
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<URL:http://httpd.apache.org/userslist.html>  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 <URL:http://httpd.apache.org/userslist.html> 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