更新:重写了一些问题。尝试像下面那样路由我的子域
- 登录应用程序有限公司
- user1.app.ltd
- user2.app.ltd
- 注册应用程序有限公司
使用
- 导轨 3.2
- 设计
尝试了几篇教程博客文章无济于事,有人知道这方面的工作示例吗?真的坚持这个:(
这是我现在的路线:
match '', to: 'frontend#index', constraints: lambda { |r| r.subdomain.present? && ( r.subdomain != 'www') }
#match '' => 'home#index', :constraints => { :subdomain => 'login' }
constraints :subdomain => /^(?!signup\b)(\w+)/ do
root :to => "frontend#index"
end
root :to => "frontend#index"