在我的路线中,我对子域"成员"有约束。像这样:
constraints subdomain: "members" do
get '/somethig', to: 'controller_1#show'
end
我想获得除"成员"之外的任何其他子域名。到另一个控制器,所以我添加了另一个这样的约束:
constraints subdomain: /.+/ do
get '', to: 'controller_2#show'
end
现在所有子域名包括"成员"被重定向到controller_2#show
我如何解决