app/ -----modules ---------test -----------classes -----------config -----------------------routes.phpthis code below is not working. but works when i put it in app/config/routes.php but not in modules
<?php return array( 'admin/test'=>'test/admin/test/index' ); ?>
return array( '(:segment)/(:segment)/:page/:subid/(:any)' => '$1/$2/$3/$4/$5', //content/one/articles/666/15 => 'controller/one/15' with :page=>articles and :subid=>666 );Here is more explained sample what I've tried: http://scrp.at/aXO
It looks like you're new here. If you want to get involved, click one of these buttons!