以下のようにルーティングを設定すると、 community_community_topic、 new_community_community_topic、 edit_community_community_topicなどのパスが自動的に作成されます。
resources :communities, :path => "community" do
resources :community_topics, :path => "topic"
end
community_community_topicsではなくこの
community_topicのようなパスが必要な場合はどうなりますか
どうすればroutes.rbをコーディングできますか?