I'm quite experienced in PHP but I don't quite use mod_rewrite
(although I should). All I want to ask is if it's possible to pass many variables through a single rewrite rule.
For example, is it possible to rewrite this:
localhost/test.php?id=1&name=test&var1=3
into this:
localhost/mysupertest/
and also use the same rewrite rule for different values?
localhost/test.php?id=5&name=another_name&var3=42
into
localhost/mysupertest/
I know it can be done using Ajax, cookie, session, or POST variables, but I really want to use GET variables.