I am trying to implement HMVC with CodeIgniter. I used this library from bigbucket
It works fine for me when i created admin module. But now i am trying to define module inside a modules. So, my structure will be like this :-
Here "admmin" is my main module. And page is a sub module of admin. I again define two sub modules of page module 1) Static and 2) Dynamic.
When i access the admin module using the url :-
http://localhost/ci_hmvc/index.php/admin
it works. But when i try to access the sub module using this url:-
http://localhost/ci_hmvc/index.php/admin/page
It gives me 404 error.
Any hint will be helpful.
thanks