<?php return array( '_root_' => 'homepage/index', // The default route 'about' => 'homepage/about', '_404_' => 'homepage/404', // The main 404 route );
<?php return array( 'admin/(:segment)' => 'admin/admin/$1/index', // admin module index pages 'admin/(:segment)/(:num)' => 'admin/admin/$1/index/$2', // paginated index pages 'admin/(:any)' => 'admin/$1', // all other admin module pages );
<?php \Debug::dump('blog routes'); return array( 'blog/cat/(:any)' => 'blog/blog/category/$1', );
It looks like you're new here. If you want to get involved, click one of these buttons!