Rails 和主站点中的子域路由

发布于 2024-08-05 23:20:09 字数 147 浏览 2 评论 0原文

我正在尝试设置以下内容:

www.domain.com 转到主站点(用户可以注册,有关应用程序的信息)

foo.domain.com 转到为用户(子域)定制的主应用程序

是什么分离导轨部件的最佳方法?命名空间控制器似乎不受欢迎。

I am trying to set the following up:

www.domain.com goes to the main site (user can register, information about application)

foo.domain.com goes to the main application that is customized to the user(subdomain)

what is the best way to separate the rails parts? Namespaced controllers seem frowned upon.

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

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

发布评论

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

评论(1

听风吹 2024-08-12 23:20:09

别把他们分开。只需使用 before_filter 来要求登录和需要存在子域/客户端的控制器上的子域。

class ApplicationController < ActionController::Base
  private

  def require_subdomain_scope
    # check if request.subdomains is blank or www. Something like that.
  end
end

class StaticPagesController < ApplicationController
  # no before_filter!
end

class ProjectsController < ApplicationController
  before_filter :require_login, :require_subdomain_scope
end

Don't separate them. Just use a before_filter to require login and a subdomain on the controllers that requires a subdomain/client to be present.

class ApplicationController < ActionController::Base
  private

  def require_subdomain_scope
    # check if request.subdomains is blank or www. Something like that.
  end
end

class StaticPagesController < ApplicationController
  # no before_filter!
end

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