I have this:
<li><%= link_to "More", feed_products_path(product.id) ,{:class=>"button-small white"} %></li>
This link outputs: http://localhost:3000/feed_products.34
I would like to see if as: http://localhost:3000/feed_products/34
How do I do this in Ruby on Rails?
Thanks!