我正在尝试学习 Zend Framework 1.12 模块目录结构,所以我手动创建了它。到目前为止,我通过将其添加到位于我的应用程序文件夹下的 Bootstrap.php 中,使模块可以使用默认值。
$this->bootstrap("frontController");
$front = $this->getResource("frontController");
$front->addModuleDirectory(APPLICATION_PATH . '/modules');
我尝试使用 application.ini 通过以下设置执行此操作,但它一直给我一个异常说“没有向前端控制器注册的默认控制器目录”。
resources.frontController.defaultController = "index"
resources.frontController.defaultAction = "index"
resources.frontController.defaultModule = "default"
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.modules[] = ""
这是我的目录结构:
root
|
+- application
|
+- configs
| |
| +- application.ini
|
+- modules
|
+- default
| |
| +- controllers
| | |
| | +- IndexController.php
| |
| +- views
| |
| +- scripts
| |
| +- index
| |
| +- index.phtml
|
+- signup
|
+- controllers
| |
| +- IndexController.php
|
+- views
|
+- scripts
|
+- index
|
+- index.phtml
这是我的重写规则:
RewriteEngine On
RewriteRule ^myroot/.*$ index.php [NC]
我尝试访问http://mysite.com/root/signup但我不断收到 404。我是否缺少在 Zend 中设置模块的内容?
更新: 如果我将默认设置为注册,它可以工作。
resources.frontController.defaultModule = "signup"
我现在最好的猜测是当我输入时 RewriteRule 没有将它重定向到 index.php