Rails routing /forum/[category_id]/[topic_id] – SEO
I would like to create nested routes for my forum, where a topic belongs to a category. I'm not liking the default nested routes resources :forum_category do resources :forum_topic end which would give me something like /forum_category/[forum_category_id]/forum_topic/[forum_topic_id] What I want:…