> >if ($r->filename =~ m/^proxy:/)
> > {
> > $r->handler('proxy-server');
> > return DECLINED ;
> > }
> >
>
>
> Just tried it; didn't help. The error message is still there.
>
Then you have to go the other way around and avoid calls to mod_perl for
proxy request at all, by putting it inside a <Directory> block, which will
not
e.g.
<Directory />
SetHandler perl-script
PerlHandler my-handler
</Direcotry>
With this config, my-handler isn't called if the filename starts with
proxy:, so mod_proxy can handle it.
Hope this helps more
Gerald