in reply to mod rewrite on mod perl handler skip trans handler phase
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' ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: mod rewrite on mod perl handler skip trans handler phase
by Anonymous Monk on Dec 19, 2006 at 17:18 UTC | |
by derby (Abbot) on Dec 19, 2006 at 19:52 UTC |