zend framework如何访问controllers文件夹下的子文件中的controller?

例如
controllers文件夹下还有子文件夹admin,admin文件夹下有IndexController.php,IndexController.php中有indexAction(){} ,我怎么访问该indexAction()呢?
我这样写访问不了:http://localhost/myproject/public/admin/index/index,请问该如何访问?

那就需要更改你的module.config.php文件中router下面的controller的路径,把路径更改成类似'controller' => 'ModuleName\Controller\admin\Index',主要就是将admin\Index加入你的controller路径,然后直接访问http://localhost/myproject/public就可以了
温馨提示:内容为网友见解,仅供参考
无其他回答

...framework如何访问controllers文件夹下的子文件中的controller?
那就需要更改你的module.config.php文件中router下面的controller的路径,把路径更改成类似'controller' => 'ModuleName\\Controller\\admin\\Index',主要就是将admin\\Index加入你的controller路径,然后直接访问http:\/\/localhost\/myproject\/public就可以了 ...

Ubuntu10.10 Zend FrameWork配置方法及helloworld显示
2.7、启动运行http:\/\/localhost\/firstProject 三、Zend Framework显示hello 3.1、从终端进入firstProject文件夹内,运行zf create Controller showhello    3.2、编写application\/controllers\/ShowhelloController.php 复制代码    代码如下:?php    ...

相似回答