Basic - rahendz/HMVCI GitHub Wiki

Running the engine

Overall it still codeigniter, so you still able to use the 100% codeigniter style code.

  1. Since you have complete installation, it should works fine. Just access the home url or the sample controller
  2. By default the controller route is set to basic at application/controller/basic.php
  3. Accessing home url (http://localhost/index.php) will show the basic_message.php that stored at application/views.
  4. To show the modular works just accesing the welcome page (http://localhost/index.php/welcome), it will call the welcome controller which stored at application/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.