01-08-2015, 09:37 AM
Hi,
How set $route["default_controller"] with HMVC (wiredesignz) in Codeigniter 3 ?
I have this code in application/config/routes.php :
Result: Error 404 (from Codeigniter)
The same code is working in Codeigniter 2.x.
I add this in modules/home/config/routes.php
but this result is the same: error 404 (from codeigniter)
Please
How set $route["default_controller"] with HMVC (wiredesignz) in Codeigniter 3 ?
I have this code in application/config/routes.php :
Code:
$route['default_controller'] = 'home';
The same code is working in Codeigniter 2.x.
I add this in modules/home/config/routes.php
PHP Code:
<?php
$route['home'] = 'home/sayhello';
Please