Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

$_GET and URL Rewriting for PHP

How does URL rewriting affect the $_GET parameter for PHP?

Say I have a URL like http://example.com/index.php?p=contact and I use $_GET['p'] to tell index.php to serve the contact page. If I use a rewrite rule that converts the URL to http://example.com/contact, will $_GET['p'] still work as expected?

If it does, could you elaborate on why it works? If not, what strategies could be used to solve the problem so that the page will work both with and without the rewrite?

like image 292
VirtuosiMedia Avatar asked Feb 02 '09 22:02

VirtuosiMedia


4 Answers

I'd amend Grant's answer to "Yes, that will work mostly as expected."

Specifically, mod_rewrite's behavior with regards to existing query strings can be surprising. As an example, let's take the following rule, which converts the URL you supplied:

RewriteRule /contact /index.php?p=contact

This will correctly rewrite /contact to /index.php?p=contact and the page name will be accessible through $_GET['p']. However, if you use this technique with a script that uses parameters other than the page name, it gets slightly trickier. This rule also translates /contact?person=Joe to /index.php?p=contact. The person=Joe parameter disappears entirely! There are two ways to deal with this.

The simplest way is to use the [QSA] ("query string append") flag on your rule, which will place the original query string after the parameters supplied in the rule, translating /contact?person=Joe to /index.php?p=contact&person=Joe:

RewriteRule /contact /index.php?p=contact [QSA]

However, this makes it possible for your p= parameter to get overwritten. Visiting /contact?p=about will get rewritten to /index.php?p=contact&p=about, so $_GET['p'] will return "about" in your script, not "contact". To resolve this, use the QUERY_STRING variable instead:

RewriteRule /contact /index.php?%{QUERY_STRING}&p=contact

This guarantees that $_GET['p'] will always return "contact" when using this rule, regardless of whether your visitors are messing with your URLs. :-)

like image 177
Ben Blank Avatar answered Sep 20 '22 04:09

Ben Blank


Yes, that will work as expected.

like image 40
Grant Avatar answered Sep 21 '22 04:09

Grant


When rewriting an URL this is done by mod_rewrite -- the page retrieved in the end is still the "old" one, i.e. index.php?p=contact. In other words, the browser retrieves /contact. mod_rewrite then rewrites it to index.php?p=contact. The script, due to this, doesn't know that any rewriting happened -- it still gets called its "usual" way. Therefore such a rewrite will work. You might want to think of it as a rewriting proxy that requests a different page than the one the originating browser requested.

like image 44
bluebrother Avatar answered Sep 21 '22 04:09

bluebrother


When the client requests http://example.com/contact, the server uses the rewrite rule to serve them http://example.com/index.php?p=contact instead. The client will not be able to see the rewritten URL and might not even be able to tell that it was rewritten. Requesting either URL as the client would give you the exact same page.

like image 22
Paige Ruten Avatar answered Sep 19 '22 04:09

Paige Ruten