模块和自定义路线
我正在使用 Zend Framework 构建一个网站,但在实现模块和自定义路由时遇到问题。
基本上有两个规则:
- 根据域选择模块(多个域可以选择单个模块)
- 无论域如何,根据路径选择一个特定模块
示例:
- domain1.com 选择模块domain1
- domain1.net 选择模块domain1
- domain2.com选择模块domain2
- 两个domain1.com/admin 和domain2.com/admin 选择模块admin
这是我使用ZF 的第一个项目,所以我对该框架的经验基本上是不存在的。我在我的引导程序中做了一些肮脏的黑客攻击,我检查域并执行 Zend_Layout::startMVC()
以获得正确的布局,但是当我实现自定义路由时,情况就变得混乱了。
所以我想知道实施这个的最佳方法是什么?
I'm building a website using Zend Framework and having trouble implementing modules and custom routes.
There are basically two rules:
- Select a module based on the domain (multiple domains can select a single module)
- Regardless of domain, select one specific module based on path
Examples:
- domain1.com selects module domain1
- domain1.net selects module domain1
- domain2.com selects module domain2
- both domain1.com/admin and domain2.com/admin select module admin
This is the first project where I use ZF, so my experience with the framework is basically non-existent. I have done some dirty hacking in my bootstrapper where I check the domain and than execute Zend_Layout::startMVC()
to get the correct layout, but that is messed up when I'm implementing custom routes.
So I was wondering what is the best way to go about implementing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Zend_Route 和 这篇文章。
Look into Zend_Route, and this post.