如何在 Zend 中使用除 indexcontroller 之外的不同索引控制器

发布于 2024-10-01 18:45:00 字数 155 浏览 2 评论 0 原文

如果你使用 zend 框架并访问 http://localhost,该站点将调用索引控制器的索引操作.... .有没有办法配置 zend,以便在访问索引站点时它会调用其他控制器?

提前致谢

if you use zend framework and just go to http://localhost, the site will call the index action of index controller.....is there a way to configure zend such that it will call some other controller when you access the index site?

thanks in advance

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

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

发布评论

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

评论(2

压抑⊿情绪 2024-10-08 18:45:00

设置所需的值

或者使用Zend_Application_Resource_FrontController,您可以设置所需的application.ini 中的值,它们会在引导期间自动应用。

resources.frontController.defaultControllerName = "site"
resources.frontController.defaultAction = "home"
resources.frontController.defaultModule = "static"

Either set the desired values through the FrontController's API

or, when using Zend_Application_Resource_FrontController, you can set the desired values in your application.ini and they get applied automatically during bootstrap.

resources.frontController.defaultControllerName = "site"
resources.frontController.defaultAction = "home"
resources.frontController.defaultModule = "static"
所有深爱都是秘密 2024-10-08 18:45:00

使用 Zend_Controller_Front:

    $front = Zend_Controller_Front::getInstance();
    $front->setDefaultControllerName('myDefaultController');

Use Zend_Controller_Front:

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