从子域中排除资源或仅允许子域可用的某些资源?

时间:2013-03-25 21:12:40

标签: ruby-on-rails-3 routing subdomain router

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。有一个简单的方法吗?

0 个答案:

没有答案