我读过一本名为 zend 框架:初学者指南的书。有人提到,创建模块并对事物进行分类是最佳实践。
我已将模块目录添加到应用程序目录,并将视图、控制器和模型目录移动到其中。结构如下:
应用
- 配置
- 模块
- 引导程序.php
当我打开浏览器并浏览以下 URL 时:
localhost/square/default/index/index
或者
localhost/square/public/default/index/index
我收到not found
错误消息。我已将配置文件(application.ini)更改如下:
resources.frontcontroller.controllerDirectory = APPLICATION_PATH "/modules/default/controllers"
resources.frontcontroller.params.displayExceptions = 0
resources.frontcontroller.moduleDirectory = APPLICATION_PATH "/modules"
resources.modules = ""
我已阅读以下问题,但这没有帮助: