'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,
'rules' => array(
'/profile/<id:\d+>' => array('user/profile'),
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
)
)
url: ‘http://localhost/mysite/profile/123’;
but not working, somebody can help me?