I'm just trying to get the link to point to "user/1/post/1". I've tried using the link_to with and without the :method key and got the same results.
ActionController::RoutingError in Posts#index
Showing /home/test/rails_apps/test_app/app/views/posts/index.html.erb where line #22 raised:
No route matches {:action=>"destroy", :controller=>"posts", :user_id=>#<Post id: 1, content: "wtf", user_id: 1, created_at: "2010-10-27 20:46:46", updated_at: "2010-10-27 20:46:46">}
Extracted source (around line #22):
22: <td><%= link_to 'Show', user_post_path(p), :method => :get %></td>