Friday, September 2, 2011

Remove controller name from url

In cakephp if you want to remove controller name from URL , just add below line on your's routes.php file.

Router::connect('/:action', array('controller' => 'pages'));


its come something like that locahost/stiename/action .

We do this generally to show our static pages on site without controller name in URL , page which are likes about us ,contact us ,help and so on.