My default_controller in the routes configuration is set as \"home.php\".
I have a sub directory for my controllers, lets call it \"folder\". So if I visit http://my
In application/config/routes.php just add this
$this->set_directory( "user" ); $route['default_controller'] = 'home/index';
Here, user is my folder name. Then in default controller you can call any controller that is in user folder following by function name