currently:
mod_rewrite turns:
/a/b/c
into:
a/c?id=b
/a/ is its own <location> container
problem
$ApacheRequestRec->location = /a/
$ApacheRequest->path_info() = /
$ApacheRequest->path_info( $path_info ) = /
$ApacheRequest->uri() = /a/b/c/
$ApacheRequest->unparsed_uri() = /a/b/c
explained:
all of the $r operations show the original request
i need to access what mod_rewrite mapped me to - and i can't find
anything that does that
i know i must be missing something obvious - can someone suggest
something?