in reply to mod_perl and propogating path_info

Sounds like you're looking for the PerlTransHandler. There is an example in the docs there.

Replies are listed 'Best First'.
Re: Re: mod_perl and propogating path_info
by derby (Abbot) on Mar 27, 2003 at 20:16 UTC
    I considered PerlTransHandler because the problem sounds an awful lot like URL re-writing (ala sessionids). I didn't mention it but there are other apps running under the myserver.com domain. Since a PerlTransHandler cannot be within a Location, Directory or Files section and I didn't want to burden the other apps, I choose not to use a PerlTransHandler.

    -derby

      Well, it's essentially the same as using mod_rewrite if you already have mod_perl compiled in. You could also use $r->internal_redirect($new_uri) for this.