When using
$route[\'(:any)\'] = \'pages/view/$1\';
and I want to use other controllers in my routing for example:
$route[\'del
As indicated, $route['(:any)'] will match any URL, so place your other custom routes before the "catch-all" route:
$route['(:any)']
$route['del/(:any)'] = 'crud/del'; // Other routes as needed... $route['(:any)'] = 'pages/view/$1';