Basic - rahendz/HMVCI GitHub Wiki
Running the engine
Overall it still codeigniter, so you still able to use the 100% codeigniter style code.
- Since you have complete installation, it should works fine. Just access the home url or the sample controller
- By default the controller route is set to basic at
application/controller/basic.php
- Accessing home url
(http://localhost/index.php)
will show thebasic_message.php
that stored atapplication/views
. - To show the modular works just accesing the welcome page
(http://localhost/index.php/welcome)
, it will call the welcome controller which stored atapplication/modules/welcome/controller/welcome.php
Basically, the url segment are identical with codeigniter structure. I only got small custom on it, while the original codeigniter first segment pointing to directory or direct controller class under application/controllers
folder, my custom also search it under modules
directory.