How can I rewrite a URL and pass on the original URL as a parameter?
Posted
by
Bobby Jack
on Server Fault
See other posts from Server Fault
or by Bobby Jack
Published on 2013-06-25T16:17:02Z
Indexed on
2013/06/26
16:23 UTC
Read the original article
Hit count: 231
apache2
|mod-rewrite
I'm building a site that needs to include a 'check' procedure, to do several initiation tasks for a user's session. Examples include checking whether they're accepting cookies, determining if their IP address grants them specific privileges, etc.
Once the check is complete, I need to redirect the user back to the page they originally requested.
The plan is to use RewriteCond
and map all URLs to an 'initiator' if the user doesn't have a specific cookie set.
Let's say I want to rewrite all URLs (ultimately, with some conditions, of course) to:
/foo?original_url=...
Where the ...
is the original URL requested, URL-encoded.
The closest I've got is this:
RewriteRule ^(.*)$ http://localhost/php/cookie.php$1 [R=301]
I can then inspect the original URL, captured in the backreference, via PATH_INFO
. However, this is pretty messy - I would much prefer to pass that value as a URL parameter
© Server Fault or respective owner