Skip to content

Instantly share code, notes, and snippets.

@vindia
Created April 11, 2012 08:07
Show Gist options
  • Save vindia/2357783 to your computer and use it in GitHub Desktop.
Save vindia/2357783 to your computer and use it in GitHub Desktop.
Namespaced routing for subdomains in Rails
Rails::Application.routes.draw do
constraints :subdomain => 'admin' do
namespace(:admin, :path => '/') do
resources :books
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment