If I implement RESTful routing for a controller 'galleries' like as follows:
map.resources :galleries
By default the show url for this controller would be:
/galleries/:id
which would respond to any requests to /galleries/1 etc.
What if I had a gallery record in the database with a 'name' attribute with value 'portraits'. Could I do the same as follows:
/galleries/portraits
instead of doing
/galleries/1 ?