ActionController::Routing::Routes.draw do |map| # The priority is based upon order of creation: first created -> highest priority. # Sample of regular route: # map.connect 'products/:id', :controller => 'catalog', :action => 'view' # Keep in mind you can assign values other than :controller and :action # Sample of named route: # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase' # This route can be invoked with purchase_url(:id => product.id) map.with_options :controller=>"guestbook" do |g| g.home '', :action=>"index" g.add_guestbook_entry "/add/", :action=>"new" g.admin "/admin", :action=>"list" end map.with_options :controller=>"account" do |a| a.login "/login/", :action=>"login" a.logout "/logout", :action=>"logout" end # Install the default route as the lowest priority. map.connect ':controller/:action/:id.:format' map.connect ':controller/:action/:id' end