ruby-on-rails – 如何从url获取子域值?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何从url获取子域值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在rails中获得子域值,是否有内置的方法来做到这一点?

例如

test123.example.com

我想要test123的一部分url.

解决方法

Rails 3.0具有内置的此功能,您可以从request.subdomain访问子域.

您也可以根据子域路由:

class SupportSubdomain
  def self.matches?(request)
    request.subdomain == "support"
  end
end

Basecamp::Application.routes do
  constraints(SupportSubdomain) do
    match "/foo/bar",:to => "foo#bar"
  end
end

如果你使用2.3,你需要使用一个插件,如subdomain-fu.

原文链接:https://www.f2er.com/ruby/273464.html

猜你在找的Ruby相关文章