有些网站图片不起作用?

时间:2016-05-23 09:34:22

标签: php wordpress image caching

http://astrobri.com/ - 对于这个网站,有些图片不起作用。 是一个wordpress网站和缓存我使用WP Fastest Cache与此设置和.htaccess规则:

# Image and Flash content Caching for One Month
<FilesMatch ".(flv|gif|jpg|jpeg|png|ico|swf)$">
Header set Cache-Control "max-age=2592000"
</FilesMatch>
这可能是这个规则吗? 任何建议表示赞赏。 先感谢您。

2 个答案:

答案 0 :(得分:0)

图像实际上已加载。 CSS阻止它们可见。也许在图像上执行动画的脚本无法正确加载。

@vrajesh已经提出了一种解决方法:

.post img {
    opacity: 1 !important;
}

将其添加到style.css以使图像可见。

答案 1 :(得分:0)

通过禁用WP Fastest Cache插件的“Combine JS”选项解决了这个问题。