How To Customize Url

Hi Everybody

can somebody tell me how can i change my url from ‘/controller/view/id/30’ to ‘survey’ or ‘survey/30’?.thanks in advance.

Hi

first you can read the post

http://www.yiiframework.com/doc/guide/1.1/en/topics.url for more refrence

if you want to redirect the page


 $this->redirect(array('//vendor/index/'.$id));

and use the createUrl




<?php  echo  CController::createUrl('//register/vendor/'.$id);?>

otherwise you can change the url dynamic on config/main.php file


'urlManager'=>array(

                        'urlFormat'=>'path',

                        //'showScriptName'=>false,

                        'rules'=>array(

                                'admin/'			=>'admin/index/index',

                                'admin/login'		=>'admin/index/login',

                                'admin/logout'		=>'admin/index/logout',

                                'admin/<controller:\w+>/<action:\w+>'=>'admin/<controller>/<action>',

),

                ),