自去年12月以来,Gmail正在缓存所有图片。
现在是动态图片,例如倒计时不会正常工作。一旦图像被缓存,计时器将显示谷歌缓存图像的时间,并且不会自行更新。
我找到了解决方法(对于那些想要帮助进一步解释的人):http://blog.movableink.com/real-time-content-and-re-open-tracking-return-to-gmail/
现在我的问题:我该怎么做?
我尝试添加" no-cache"和" max-age = 0"我的标题,但Gmail仍在缓存它。
这是我的完整标题
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
header( 'Cache-Control: no-store, no-cache, must-revalidate, max-age=0' );
header( 'Cache-Control: post-check=0, pre-check=0', false );
header( 'Pragma: no-cache' );
我也尝试过只使用" no-cache"和" max-age"和其他组合一样,似乎没什么用。
有什么建议吗?