resources :post_categories, :path => '', :only => [:show] do
resources :posts, :path => '', :only => [:show]
end
/category/id
/category
/category/2015/11/08/id
get "/categories/:year/:month/:day/:id", to: "categories#whateveryouwant"
resources :post_categories, path: '', only: :show do
resources :posts, path: '/:year/:month/:day', only: :show,
constraints: { year: /\d{4}/, month: /\d{2}/, day: /\d{2}/ }
end