I have routes such as:
somedomain.com/cities/prague/places/astronomical-clock
resources :cities do
resources :places
resources :images
end
I know I can do something like:
match '/:id' => 'cities#show', :as => 'short_city' # /prague
but what can I do about having short nested routes?
ie. /prague/astronomical-clock?
And could/should I make where it overwrites the default url_for methods?