rails中特定域和通用子域的约束

时间:2016-08-20 19:25:41

标签: ruby-on-rails routes subdomain

在我的路线中,我对子域"成员"有约束。像这样:

constraints subdomain: "members" do

    get '/somethig', to: 'controller_1#show'

end

我想获得除"成员"之外的任何其他子域名。到另一个控制器,所以我添加了另一个这样的约束:

constraints subdomain: /.+/ do

      get '', to: 'controller_2#show'

  end

现在所有子域名包括"成员"被重定向到controller_2#show

我如何解决

0 个答案:

没有答案