#routes.rb
map.connect '/articles/new', :controller => 'articles', :action => 'new'
map.connect '/articles/:author_name', :controller => 'articles', :action => 'show'
map.connect '/articles/:author_name/edit', :controller => 'articles', :action => 'edit'
map.resources :articles, :comments
When I got to /articles/test and click delete, it does nothing. I'm guessing my custom routes are preventing it, how do I solve it?
Thanks