Rails 3,如何从子域中排除所有控制器和方法,并只允许子域块下指定的某些资源可用?
路线.rb:
< all regular resources >
match 'home/about' => "home#about"
constraints subdomain: 'm' do
resources :home
resources :profile
resources :messages
root :to => 'mobile/home#index'
end
我想禁用上述设置中可用的 m.domain.ltd/about。是否有捷径可寻?