Can we display url in the format controller/action/id to /id in Yii? Also, one major problem is that I need to do this only on the specific controller/
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,
'rules'=>array(
'user/post/'=>'', //this should be the very first rule
//other rules
),
),
),