CodeIgniter Forums
Need Help for Using Hmvc CI3 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6)
+--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17)
+--- Thread: Need Help for Using Hmvc CI3 (/showthread.php?tid=62303)



Need Help for Using Hmvc CI3 - Vimal - 07-01-2015

I am using HMVC extension with codeigniter 3.0.

I found there is solution for avoid model controller name collision with HMVC.
I added this config variable in config.php file
PHP Code:
$config['controller_suffix'] = "_Controller"
So its Working perfect like Welcome_Controller.

But i have problem with default_controller in route.php.

when I use url : http://{url}/welcome or http://{url}/index.php/welcome =>Its work
but default controller show me 404 error like http://{url}.

Need Quick help