I have a pretty common case for nested routes, I feel like, that looks something like this (in some sort of pseudonotation):
\'/:username/photos\' => Show
Example::Application.routes.draw do resources :accounts, :path => '' do resources :projects, :path => '', :except => [:index] end end
Got the example from: http://jasoncodes.com/posts/rails-3-nested-resource-slugs
Just applied that in my current project.