Pyramid 中的路由子域
在 Pylons 1.0 中,我可以进入 config/routing.py 并添加
map.connect('/', controller='index', conditions=dict(sub_domain=False))
map.connect('/', controller='mobileindex', conditions=dict(sub_domain='m'))
将 m.mydomain.com 路由到不同的控制器,但仍然使用相同的应用程序。我可以在金字塔中做同样的事情吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@syrion 所指的示例可在此处找到:
多个单个 Pyramid 实例上的域和子域
An example of what @syrion is referring to is available here:
Multiple domains and subdomains on a single Pyramid instance
理论上,这是由 涵盖的
add_route()
与 预生成器 参数。Theoretically, this is covered by
add_route()
with a pregenerator argument.