Justin Erenkrantz at [EMAIL PROTECTED] wrote:
> 
> I wonder how Pier is addressing this in mod_webapp.  I'll have to
> look.  -- justin

Easy as 1.2.3... WARP has a concept of URI and QUERY STRING... Very separate
things... All I do is

    req->ruri=apr_pstrdup(req->pool,r->uri);
    req->args=apr_pstrdup(req->pool,r->args);

The URI goes into the URI, the query string goes into the query string...
Apache does it for me, why should I bother? :)

    Pier

Reply via email to