How to route URIs to application/controllers & still use Module::run in CI3 with HMVC
问题 I only use the modules for partial views, they are never routed to directly. Instead I have main controllers inside application/controllers and views inside application/views/ which execute Modules::run($moduleName, $params); This invokes the module and renders fine, when reached. The problem is none of my routes are calling their application/controller/ methods . Meaning my routing has stopped working entirely and only the homepage defined by my route['default_controller'] works. Because my