Rails 3,如何从子域中排除所有控制器和方法,并且只允许在子域块下指定的某些资源可用?
routes.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。有一个简单的方法吗?