これが私のlink_to
<%= link_to sub_category.name, controller: :posts, action: :product, id: "#{sub_category.slug}-#{sub_category.id}" %>
URLを指している
http://localhost:3000/posts/product/fifith-category-s-sub-category-2
次のようなURLが必要です
http://localhost:3000/fifith-category-s-sub-category-2
どうすればできますか。
私のルート.rb
resources :posts
match ':controller(/:action(/:id))(.:format)', via: [:get,:post]