On Thu, 26 Jan 2006 12:08:12 -0500 [EMAIL PROTECTED] wrote > I need to add a unique variable to every GET request processed by the > application without issuing a redirect. Is there a way to cleanly > accomplish it in MP2? > > The following is the illustration: > > Request that looks like /app?m=someparams received by the > browser should become /app?m=someparams&appdata=requestlabel
You should be able to do this with a sub-request and $r->internal_redirect. With an internal redirect the client isn't any wiser, so it doesn't appear like a redirect. You can find more info here: http://perl.apache.org/docs/2.0/api/Apache2/SubRequest.html --------------------------------- Frank Wiles <[EMAIL PROTECTED]> http://www.wiles.org ---------------------------------