私は次のようなURLを持っていますhttp://example.com/posts/?tag=2
私のroutes.rb
は
resources :posts do
get 'tag', :on => :collection
end
次のようなリンクが必要ですhttp://example.com/posts/tag/linux
私のテーブルは次のとおりです。
posts(id,title)
tags(id,name)
taggings(id, post_id, tag_id)