map.resources :news -> map.resources :news, :singular => :news_instance news_path() /news new_news_instance_path() /news/new news_instance_path(1) /news/1 edit_news_instance_path(1) /news/1;edit #edit <% form_for(@news, :url=> news_instance_path(@news)) do |f| %> ...... if @news.save format.html { redirect_to news_instance_path(@news) } ......
