Applying style to the URLs

Sure, in routes.rb…

map.connect '/wiki/filtered_list/:value/:property, :controller => ‘wiki’, :action => ‘filtered_list’

You could also do something like this…

map.connect '/wiki/list/:value/:property, :controller => ‘wiki’, :action => ‘filtered_list’

In other words, the URL doesn’t have to match the controller or action names.