在 ZendFramework 中配置模块

发布于 2024-11-25 00:25:04 字数 726 浏览 0 评论 0原文

我在 ZendFramewok 中使用模块时遇到问题。到目前为止,我已经在应用程序目录中创建了模块的目录结构。

应用
--配置
--Bootstrap.php
--模块
----默认
------控制器
--------ErrorController.php
--------IndexController.php
------型号
------观点
--------帮手
--------脚本
----------错误
------------错误.phtml
----------索引
------------index.phtml

Updated application.ini by adding the following lines:
resources.frontController.moduleDirectory = APPLICATION "/modules"
resources.module[] = ""

将公共虚拟主机设置为 ServerName.local

因此,如果在浏览器中键入 Servername.local,我会得到默认视图,但如果我键入 Servername.local/:default/: index/:index 我得到一个 403(禁止),如果我输入 Servername.local/default/index/index 我得到一个 404(未找到),有什么帮助吗?

I have a problem using modules in ZendFramewok. I have so far created the directory sturucture for modules in application directory.

Application
--configs
--Bootstrap.php
--modules
----default
------controllers
--------ErrorController.php
--------IndexController.php
------models
------views
--------helpers
--------scripts
----------error
------------error.phtml
----------index
------------index.phtml

Updated application.ini by adding the following lines:
resources.frontController.moduleDirectory = APPLICATION "/modules"
resources.module[] = ""

Setup Virtual host for public as ServerName.local

So if type in browser Servername.local I get the default view, but if I type Servername.local/:default/:index/:index I get a 403(Forbidden), if I type Servername.local/default/index/index I get a 404(Not Found), any help??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

§普罗旺斯的薰衣草 2024-12-02 00:25:04

我相信您在 resources.module[] 上缺少一个“s”,可能需要将其更新为:

resources.modules[] = ''

I believe your missing an "s" on resources.module[], might want to update that to:

resources.modules[] = ''
何其悲哀 2024-12-02 00:25:04

首先检查 mod_rewrite 是否在 .htaccess 中启用并配置。我相信这个 404 错误来自服务器而不是您的应用程序。

之后检查您定义的索引控制器,如下所示: Default_IndexController extends Zend_Controller_Action

如果这不是您的问题,我将提出更多建议。

First of all check if mod_rewrite enabled and configured in .htaccess. I believe this 404 error coming from server and not from your application.

After that check your index controller defined as followed: Default_IndexController extends Zend_Controller_Action

If this is not your issue i'll throw in more suggestions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文