我也有同样的错误。我注意到这是来自试图获取自定义格式的“YandexImage”搜索引擎。在我的控制器上,action 是空的,因为它是一个静态的 *.html.erb 页面。这里有更多信息。
* DOCUMENT_ROOT : /srv/www/apps/mysite/current/public
* HTTP_ACCEPT : image/jpeg, image/pjpeg, image/png, image/gif
* HTTP_CONNECTION : Keep-Alive
* HTTP_FROM : support@search.yandex.ru
* HTTP_HOST : mysite.com
* HTTP_USER_AGENT : Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)
* ORIGINAL_FULLPATH : /
解决此问题的两种方法:
编辑 public/robots.txt 以阻止 YandexImage。在http://yandex.com/bots上查看更多信息
User-agent: YandexImage
Disallow: /
或者将以下代码添加到您的操作中,它将仅处理 html,否则会引发未找到的页面
respond_to do |format|
format.html
format.any { raise ActionController::RoutingError.new('Not Found') }
end