read below url
For CakePHP 2.x
http://book.cakephp.org/2.0/en/development/routing.html#prefix-routing
For CakePHP 1.x
http://bakery.cakephp.org/articles/Frank/2009/11/02/cakephp-s-routing-explained
or
Configure::write('Routing.prefixes', array('admin', 'manager'));
$this->connect("/{$prefix}/:plugin/:controller", array('action' => 'index', 'prefix' => $prefix, $prefix => true));
$this->connect("/{$prefix}/:plugin/:controller/:action/*", array('prefix' => $prefix, $prefix => true));
Router::connect("/{$prefix}/:controller", array('action' => 'index', 'prefix' => $prefix, $prefix => true));
Router::connect("/{$prefix}/:controller/:action/*", array('prefix' => $prefix, $prefix => true));
source
share