return array(
'_root_' => 'welcome/index', // The default route
'users' => 'users',
'users/(:any)' => 'users/$1',
'admin' => 'admin',
'admin/(:any)' => 'admin/$1',
'messages' => 'messages',
'messages/(:any)' => 'messages/$1',
'account/(:any)' => 'account/$1',
':any' => 'profile/$1',
'_404_' => 'welcome/404', // The main 404 route
);
return array(
'_root_' => 'welcome/index', // The default route
'_404_' => 'welcome/404', // The main 404 route
);
It looks like you're new here. If you want to get involved, click one of these buttons!