我正在尝试访问:
http://localhost:3000/images/Header.png
但我一直收到这个错误:
Routing Error No route matches "/images/Header.png" with {:method=>:get}
以下是我的路线:
ActionController::Routing::Routes.draw do |map| map.resources :worker_antpile_statuses map.resources :worker_antpiles map.resources :antcolonies map.resources :antpiles map.resources :clients map.connect ':controller/:action/:id' map.connect ':controller/:action/:id.:format' end
解决方法
routes.rb的最后两行是与所有以前不匹配的URL匹配的catch-all路由.
注释掉这两行并且它将起作用,这是您在所有应用程序中使用RESTful路由时要执行的操作.
注释掉这两行并且它将起作用,这是您在所有应用程序中使用RESTful路由时要执行的操作.
有关Rails路由的所有信息,请参阅this excellent guide.