ok, what about cgi's that generate Location: headers. Am I out of luck
here? should I contemplate changing src for ap_run_sub_req

thanx,
-amen



On Mon, 21 Aug 2000, Doug MacEachern wrote:

> whoops.  yeah, $subr->send_http_header won't work for the same reason
> send_http_header() calls within run() do not.  you'll just need to
> propagate subrequest info like so:
> 
> my $subr = $r->lookup_uri($uri);
> 
> $r->send_http_header($subr->content_type);
> 
> $subr->run;
> 
> 

Reply via email to