Skip to content

Instantly share code, notes, and snippets.

@dreamr
Created January 7, 2010 14:26
Show Gist options
  • Save dreamr/271247 to your computer and use it in GitHub Desktop.
Save dreamr/271247 to your computer and use it in GitHub Desktop.
ActionController::Routing::Routes.draw do |map|
map.with_options :controller => 'static' do |static|
static.home '/', :action => 'home'
static.home '/home', :action => 'home'
static.dogma '/practices', :action => 'practices'
static.projects '/projects', :action => 'projects'
static.access_denied '/access-denied', :action => 'denied'
end
map.root :home
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment