Zend Routing:: 我如何发送所有发送到应用程序的请求-> IndexController 到应用程序->模块->存储->IndexController

发布于 2024-09-05 10:15:00 字数 609 浏览 11 评论 0原文

我如何将 zend 项目中的所有请求发送到我的默认模块控制器(不使用 .access 文件)。

现在它转到application->IndexController,相反,我需要每个请求都转到application->module->store->IndexController

我尝试这样做:

public function indexAction()
{
       $this->_forward('index','index','store');
}

它有效,但网络浏览器中的 url http://localhost/mystore/public/ 不更改为 http://localhost/mystore/public/store/

谢谢,

Yosef

How I can send all request in zend project to my default module controller (without use .access files).

Now it going to application->IndexController, Instead I need that every request will go to application->module->store->IndexController.

I try this:

public function indexAction()
{
       $this->_forward('index','index','store');
}

Its works, but url in web browser http://localhost/mystore/public/ not change to http://localhost/mystore/public/store/

Thanks,

Yosef

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

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

发布评论

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

评论(1

清泪尽 2024-09-12 10:15:00

试试这个:

public function indexAction()
{
    $this->_redirect('index','index','store');
}

展望未来,自动处理所有重定向的控制器插件可能会更好。

Try this:

public function indexAction()
{
    $this->_redirect('index','index','store');
}

Looking forward, probably the controller plugin handling automatically all the redirects will be better.

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