Hi need help! need help about url manager…i search but dont understand well so an idea there…my question is i have …/testblogcontroller/id now i want to make it …/blog/id we can do that if we change the controller but so much editions to do also…is it posible to do in urlmanager…
in config main
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,
//'caseSensitive'=>false,
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
'/blog'=>'/testblogcontroller',
),
),