hi,
first, sorry for my english.
i have this resources in routes.rb:
map.resources :artists, :path_prefix => ‘/music’ do |artists|
 artists.resources :albums do |albums|
  albums.resources :tracks
 end
end
with this i have this type of url’s:
/music/artists/the+pixies/albums/doolitle/tracks/debaser
my question is if it’s possible to hide the controller name in the url
somehow
to have url’s of type:
/music/the+pixies/doolittle/debaser
if this possible?, breaks somehow the rest philoshopy?
thanks