基于虚拟主机的Rails路由(Host HTTP header)

发布于 2024-11-07 12:13:01 字数 179 浏览 3 评论 0原文

是否可以根据请求 URL 的主机部分指定 Ruby on Rails 路由?

在 config/routes.rb 中,我有

root :to => 'entities#index'

,但我想使用相同的代码库来服务多个站点,每个站点都有自己的默认控制器。

Is it possible to specify a Ruby on Rails route based on the host part of the request URL?

In config/routes.rb, I have

root :to => 'entities#index'

but I would like to use the same code base to serve several sites, each with their own default controller.

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

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

发布评论

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

评论(1

习惯成性 2024-11-14 12:13:01

您可以使用 请求基本约束

root :to => "siteone#index", :constraints => {:host => "siteone"}
root :to => "sitetwo#index", :constraints => {:host => "sitetwo"}

希望这会有所帮助。

You can use Request Base Constraints

root :to => "siteone#index", :constraints => {:host => "siteone"}
root :to => "sitetwo#index", :constraints => {:host => "sitetwo"}

Hope this helps.

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