hiya
currently, we're using mod_rewrite to convert uris of the form
/1/ to /users.php?id=1
with the following code in .htaccess:
RewriteRule ^([0-9]+)/ /items.php?identity=$1
we would also like to convert uris of the form
/1/?meaningoflife=42 to /items.php?id=1&meaningoflife=42
and have spent lots of time fiddling with regex's and have got nowhere
could anyone help?
thx
|