0

I'm using HMVC extension on Codeigniter. My problem is mostly about url structure and don't want to make routing.

HMVC works with:

/modules
  /manage
    /controllers
       /language
          language.php

on this URL: site_url/manage/language

but not with this structure:

/modules
   /manage
      /controllers
         /language
            /listing.php

on this URL: site_url/manage/language/listing

ActuallyMAB
  • 224
  • 1
  • 10

1 Answers1

1

Try with this:

/modules
   /manage
      /controllers
         /language.php
         /listing.php

If you need separate more the methods, you must create another module.

Jose Ayram
  • 198
  • 1
  • 14
  • Sorry, but this structure will bring me to **/manage/language** and **/manage/listing** pages. That's not I wanted to do. – ActuallyMAB Aug 16 '12 at 08:07