'pages', 'action' => 'display', 'home')); /** * ...and connect the rest of 'Pages' controller's urls. */ Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display')); /** * Then we connect url '/test' to our test controller. This is helpful in * developement. */ Router::connect('/tests', array('controller' => 'tests', 'action' => 'index')); ?>