simplify the entry point url for rails 3.2

radical wrote in post #1069978:

if in rails 2.3 we can use this syntax map.connect ' ', :controller => 'people', :action => 'action'

the result it will simplify from http://localhost:3000/people/action to http://localhost:3000/

but in rails 3.2, we can't use map.connect right? i try to use : match ' people/action ' => ' people # action ', as: 'shows'

If you create a new Rails 3.2 app and look at the config/routes.rb file you'll lots of examples of route mappings. Including this one...

# You can have the root of your site routed with "root" # just remember to delete public/index.html. # root :to => 'welcome#index'