Methods for limiting the Rails render format to html

后端 未结 5 2017
没有蜡笔的小新
没有蜡笔的小新 2020-12-09 11:18

I have a Rails 2.1.2 site that only has html templates e.g. jobs.html.erb, so when I request a restful resource:

www.mysite.com/jobs/1

5条回答
  •  伪装坚强ぢ
    2020-12-09 12:13

    In your routes you can simply remove the line:

    map.connect ':controller/:action/:id.:format'
    

    And the ".xyz" will no longer be routed, resulting in 404 errors/.

提交回复
热议问题