Current URL is : http://mysite.com/MyController/view/page1
but if you want something like :http://mysite.com/MyController/page1
means you want to hide action name from URL.
Then go to app/config/routes.php and type the below code.
Router::connect('/:controller/*', array('action' => 'view'),array('id' => '[0-9]+'));
It will help you
0 Comment(s)