in reply to Re: mod_perl and propogating path_info
in thread mod_perl and propogating path_info

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

  • Comment on Re: Re: mod_perl and propogating path_info

Replies are listed 'Best First'.
Re: Re: Re: mod_perl and propogating path_info
by perrin (Chancellor) on Mar 27, 2003 at 20:48 UTC
    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.