my last url rewriting question (hopefully)

2005-12-28 Thread Jonathan Vanasco
currently: mod_rewrite turns: /a/b/c into: a/c?id=b /a/ is its own container problem $ApacheRequestRec->location = /a/ $ApacheRequest->path_info() = / $ApacheRequest->path_info( $path_info ) = / $Apa

Re: my last url rewriting question (hopefully)

2005-12-29 Thread John ORourke
Don't forget (depending on your config) your mod_perl handler will be called twice, once to handle the original request and once to handle the subrequest, so in your handler you should return Apache2::Const::DECLINED unless the URI is in the right format. Why not forget the rewriting and just