Rails 和主站点中的子域路由
我正在尝试设置以下内容:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
别把他们分开。只需使用
before_filter
来要求登录和需要存在子域/客户端的控制器上的子域。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.