Snippets' routes
1 map.connect '', :controller => "posts", :action => "index" 2 map.connect 'tags/*tags', :controller => 'tag', :action => 'show' 3 map.connect 'user/:user', :controller => 'user', :action => 'show' 4 map.connect 'user/:user/tags/*tags', :controller => 'tag', :action => 'show'