Is it possible to identify a controller and pagename in the same url
Router::connect('/:controller/');
Router::connect('/:pagename/', array('controller' => 'home','action'=>'index'));
www.example.com/controller so that the controller goes to the :controller/index
www.example.com/pagename so that the page goes to home/index