我有 hmvc 设置并且工作正常,
我有一个画廊模块。
图库模块分为三个控制器,其结构如下:
/modules/gallery/
/modules/gallery/config/
/modules/gallery/helpers/
/modules/gallery/controllers/
/modules/gallery/controllers/gallery.php
/modules/gallery/controllers/galleries.php
/modules/gallery/controllers/images.php
/modules/gallery/models/
/modules/gallery/models/galleriesmodel.php
/modules/gallery/models/imagesmodel.php
/modules/gallery/views/dashboard.tpl
/modules/gallery/views/galleries/dashboard.tpl
/modules/gallery/views/images/dashboard.tpl
无论如何,我的images.php
控制器中有一个名为list_items
所以我想将网址
http://example.com/gallery/images/list映射到
http://example.com/gallery/images/list_items
所以我想,甜蜜的,我会在/modules/gallery/config/routes.php
里面添加一个带有路线的。
但似乎这些路线没有被包括在内。
包含来自的路线/application/config/routes.php
,如果我die('loaded')
在模块routes.php
中放入 a 它确实会杀死脚本,
但是跑步
print_r($this->router)
从其中一个控制器不显示来自模块的任何路由routes.php
。
这里发生了什么?