I\'m new to CodeIgniter and I\'ve just gone through some of their user guide to help me understand how to do multiple controllers.
I have figured out how to load mul
You are routing everything to your Site controller with the routing rule:
$route['(:any)'] = 'site/index/$1';
With such a catch-all routing rule you will never reach other controllers as for example your Mycontroller.