I have the following directory layout:
Code:
library/
application/
module/ - e.g news
/controllers - controllers for front end
/models
/views - views for front end
/administration/
/controllers - controllers for administration
/views - views for administration
How do I configure the router or what ever to get the system look for admin-controllers in the administration/controllers folder when the URL example.com/administration/module/controller/action is entered?
E.g the example.com/administration/news URL should invoke the IndexController in the application/news/administration/controllers/ folder.
Default module routing functionality should just apply to the example.com/administration URL, but should look for controllers and views in the administration folder for each module.
Thanks in advance