Pyramid 中的路由子域

发布于 2024-10-21 07:41:53 字数 288 浏览 5 评论 0 原文

在 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 路由到不同的控制器,但仍然使用相同的应用程序。我可以在金字塔中做同样的事情吗?

In Pylons 1.0 I could go into config/routing.py and add

map.connect('/', controller='index', conditions=dict(sub_domain=False))
map.connect('/', controller='mobileindex', conditions=dict(sub_domain='m'))

to route m.mydomain.com to a different controller, but still use the same app. Can I do the same in Pyramid?

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

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

发布评论

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

评论(2

三寸金莲 2024-10-28 07:41:53

@syrion 所指的示例可在此处找到:

多个单个 Pyramid 实例上的域和子域

An example of what @syrion is referring to is available here:

Multiple domains and subdomains on a single Pyramid instance

如何视而不见 2024-10-28 07:41:53

理论上,这是由 涵盖的add_route()预生成器 参数。

Theoretically, this is covered by add_route() with a pregenerator argument.

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