在 localhost / WEBrick 配置中(Rails 3.1,ruby 1.9.2,我的一条路线将 favicon.ico 文件作为请求参数。它似乎只在这一条路线上,不确定为什么这样做:
在我的路线中:routes.rb
scope '/arc' do
match '/item/:id' => 'items#show', :as => :item_show # id can be either integer or text
end
在 html 中:
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
Started GET "/arc/item/test-306-some-item" for 127.0.0.1 at 2012-10-18 12:18:18 -0700
……为什么要这样做???仅在上述路线上?
Started GET "/arc/item/favicon.ico" for 127.0.0.1 at 2012-10-18 12:18:22 -0700
Creating scope :page. Overwriting existing method Item.page.
Processing by ItemsController#show as
Parameters: {"id"=>"favicon"}
关于为什么会这样做的任何想法?