I have the following rule, in my config/main.php:
'<controller:\w+>/<action:\w+>/<param:\w+>'=>'<controller>/<action>',
Can I have in ExperienceController an action actionListByDistrict($param) that is called when the URL /mysite/experience/district/value is used?
I would like to do a kind of mapping in Yii Framework, but how? Actually the action takes this form: actionDistrict($param).