Zend Routing:: 我如何发送所有发送到应用程序的请求-> IndexController 到应用程序->模块->存储->IndexController
我如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
展望未来,自动处理所有重定向的控制器插件可能会更好。
Try this:
Looking forward, probably the controller plugin handling automatically all the redirects will be better.