Is there any possibility to join the 2 following rules into one?
'<module:\w+>/<controller:(cntrlr1|cntrlr2)>/<action:(actn1|actn2|actn3)>/*'=>'<module>/<controller>/<action>',
'<module:\w+>/<controller:(cntrlr1|cntrlr2)>/*'=>'<module>/<controller>'
URLs like
http://my-web-page.com/mymodule/cntrlr2/actn2/key1/val1/key2/val2
and
http://my-web-page.com/mymodule/cntrlr1/key1/val1/key2/val2
work ok with these 2 rules. I don’t have any idea how to merge them into one (if possible)?