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标头发送正常.
有什么建议吗?
Apache可能不知道ICO格式的正确MIME类型.
尝试添加
AddType image/x-icon .ico
Run Code Online (Sandbox Code Playgroud)
在ExpiresByType指令之前.