How To Change Url Path?

how to change Url path like -


route=site/view

instead of


r=site/view

thanks in advanced!!

Hi Rohit

in your protected/config/main.php in components section set routeVar to ‘route’ like that


  'urlManager' => array(

             ...

            'routeVar'=>'route',

             ...

  )

;)

Thanks a lot sir, its working great :)