zend mod 重写或路由
我在我的 Web 应用程序中使用 Zend Framework。我有下一个 URL:domain/user/user/username
。其中第一个 user
是 default
模块中的控制器。第二个 user
是一个 GET
变量。 username
是该变量的值。一切都好。但为了良好的可用性,我想要下一个 URL:domain/user/username
。我知道根据 Zend GET 规则,它应该作为我的第一个变体。但也许我可以通过 mod 重写或 Zend_Route 来做到这一点?请帮助我。
提前谢谢您。
I use Zend Framework in my web application. I have the next URL: domain/user/user/username
. Where first user
is a controller in the default
module. Second user
is a GET
variable. username
is a value of this variable. All good. But for the good usability I want to have the next URL: domain/user/username
. I know that by Zend GET rules it should be as my first variant. But maybe I can do this with mod rewriting or Zend_Route? Help me, please.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建
/application/configs/routes.xml
:然后在
Bootstrap.php
中:您还可以通过许多其他方式执行相同的操作,例如在
application中。 ini
.Create
/application/configs/routes.xml
:Then in
Bootstrap.php
:You may also do the same in a lot of other ways, e.g. in
application.ini
.在您的 application.ini 中,添加:
我建议您查看:
http://framework.zend.com/manual/en/zend.controller.router.html
In your application.ini, add:
and I suggest you to have a look at:
http://framework.zend.com/manual/en/zend.controller.router.html