Why don't you just setup your handler in such a way to interrogate path_info - if there is path_info than use that , else look at the f_id param. It looks like you're using CGI::Application so something along the lines of:
sub do_profile { my $self = shift; my $cgi = $self->query(); my $f_id = $cgi->path_info() || $cgi->param( 'f_id' ); }
In reply to Re: mod rewrite on mod perl handler skip trans handler phase
by derby
in thread mod rewrite on mod perl handler skip trans handler phase
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |