Is there a way to put a rewrite rule in htaccess that will convert query strings to segmented URIs? For eg.
http://domain.com/controller/method/?a=1&b=2&c=3
should get rewritten as
http://domain.com/controller/method/a/1/b/2/c/3
All there is to do is remove the ? and replace the &s and the =s with a /, but I'm not quite sure how all that figures into .htaccess...
Not that it'd matter, but I'm using PHP and CodeIgniter on Apache.