如何缓存我的favicon

Chu*_*hux 3 html apache apache2

我试图让我的favicon可缓存为yslow suggets.

我的网站http://www.tucoaster.com/favicon.ico

出于某种原因,favicon的内容类型是text/plain.我正在使用apache2,并且在我的.htaccess中

ExpiresByType text/plain "access plus 30 days"
ExpiresByType image/x-icon "access plus 30 days"
ExpiresByType image/ico "access plus 30 days"
Run Code Online (Sandbox Code Playgroud)

注意:Javascript和css标头发送正常.

有什么建议吗?

Pek*_*ica 7

Apache可能不知道ICO格式的正确MIME类型.

尝试添加

AddType image/x-icon .ico
Run Code Online (Sandbox Code Playgroud)

ExpiresByType指令之前.

  • 你是对的.要查看Apache认为MIME类型适用于favicon.ico的内容,请使用http://www.webpagetest.org/对您的网页进行基准测试,然后单击"详细信息"并滚动到底部以查看favicon.ico时的响应标头被拿走了.如果没有.htaccess中的"AddType image/x-icon .ico",Apache会将我的favicon.ico报告为"Content-Type:image/vnd.microsoft.icon",而不是"Content-Type:image/x-icon". (3认同)