Here I have an original url:
/index.php?controller=controller_name&action=action_name¶m1=val1¶m2=val2
I need a rule that will transform it to:
/controller_name/action_name/param1/val1/param2/val2/
The issue is I don't know how many param out there, param may have any name, for example a real case:
/member/filter/location/us/gender/male/age/20
Thanks for your help!