I have an htaccess file that currently directs the entire url minus any query string to a query string variable url....
RewriteRule ^([a-z0-9_-/]+)/?$ index.php?url=$1 [NC,L]
page/subpage/important/thingy/?t=10
becomes
index.php?url=page/subpage/important/thingy/
the query string was ignored by design originally. now we need it added but in such a way that...
page/subpage/important/thingy/?t=10&name=Bob&food=cheese
should become...
index.php?url=page/subpage/important/thingy/&t=10&name=Bob&food=cheese
in short, the user-friendly component is assigned to a get variable url and the rest are tacked on.
Can anyone tell me where to begin with this or how to modify the rewrite rule to allow this?