我的Rails 应用程序中有一个非常简单的:routes.rb
ActionController::Routing::Routes.draw do |map|
map.resources :tags
end
启动我的应用程序script/server
并将我的浏览器指向localhost:3000/tags/
收益率:
ActionController::MethodNotAllowed
Only get and post requests are allowed.
...
script/server webrick
但是,使用 启动我的应用程序可以解决问题。
后来:以防万一,我在 OSX 10.5.5 上运行 Mongrel 1.1.5。