我已经创建了一个新的rails3项目,但我在我的服务器日志中多次看到以下日志。为什么我得到这些请求,我如何避免这些?

/apple-touch-icon- precomposer .png 2012-09-18 20:03:53 +0530 ActionController::RoutingError(没有路由匹配[GET]) “/ apple-touch-icon-precomposed.png”):

我没有在任何地方给出这个链接,也不想在任何地方渲染这个图像。我不知道为什么这个资源正在被尝试加载。


当前回答

我终于解决了!!这是Mac设备上的一个网页剪辑功能。如果一个用户想在Dock o Desktop中添加你的网站,它会请求这个图标。

You may want users to be able to add your web application 
or webpage link to the Home screen. These links, represented 
by an icon, are called Web Clips. Follow these simple steps 
to specify an icon to represent your web application or webpage
on iOS.

更多信息:https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html

如何解决?: 添加图标解决问题。

其他回答

我终于解决了!!这是Mac设备上的一个网页剪辑功能。如果一个用户想在Dock o Desktop中添加你的网站,它会请求这个图标。

You may want users to be able to add your web application 
or webpage link to the Home screen. These links, represented 
by an icon, are called Web Clips. Follow these simple steps 
to specify an icon to represent your web application or webpage
on iOS.

更多信息:https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html

如何解决?: 添加图标解决问题。

如果用户从Safari Web浏览器(Apple设备)访问您的站点。如果<head>中没有定义站点图标,浏览器将按以下顺序尝试获取该站点图标:

apple-touch-icon-57x57-precomposed.png apple-touch-icon-57x57.png apple-touch-icon-precomposed.png apple-touch-icon.png

要解决此问题,请为safari web浏览器或apple设备定义一个图标。在你网站的标题部分添加如下内容:

<link rel="apple-touch-icon" href="/custom_icon.png"/>

如果你想保持<head>干净,然后上传图标到根目录你的网站的正确名称。

默认图标大小为57px。

你可以在iOS开发者库中找到更多细节。

注意,即使用户没有将网站书签到他们的iOS主屏幕上,也会发生这种情况——例如,任何时候你使用Chrome for iOS打开一个页面,它都会GET“/apple-touch-icon-precompose .png”。

我在我的ApplicationController中处理了这个和其他非html 404请求,如下所示:

respond_to do |format|
  format.html { render :template => "error_404", :layout => "errors", :status => 404 }
  format.all { render :nothing => true, :status => 404 }
end

的格式。所有响应照顾图像,如这个PNG文件(不存在的我的网站)。

如果像我一样,你不想把这些文件添加到你的Rails应用程序中,有一个像quiet_assets这样的宝石可以在你的日志中沉默这些错误:

https://github.com/davidcelis/quiet_safari

如果你在这里结束谷歌,这是一个简单的配置,以防止这个错误充满web服务器日志:

Apache virtualhost

Redirect 404 /apple-touch-icon-precomposed.png
<Location /apple-touch-icon-precomposed.png>
    ErrorDocument 404 "apple-touch-icon-precomposed does not exist"
</Location>

Nginx服务器块:

location =/apple-touch-icon-precomposed.png {
        log_not_found off;
        access_log off;
}

PS:你是否也想添加apple-touch-icon.png和favicon.ico。