Possible Duplicate:
Rewriting URL that contains question mark
Hi a noob question for url re-write
eg.
Http://localhost/example/index.php?url=test/test&id=123
after a URL rewrite the URL become
Http://localhost/example/test/test
Just wondering if the server side page still will get that $_GET['id'] value and $_GET['url'] value?
Thanks
You can get the GET params if you rewrited with [QSA] flag to preserve existing query parameters, in other way, no. Because the regex on the RewriteRule is not run against the query parameters.