所以我试图解决我的网站糟糕的“服务缩放图像”等级 - 见这里:http ://cl.ly/image/1A430t0k1r0s
我正在使用由 Wordpress 提供支持的响应式网站。我在主页全宽滑块上使用了一张图片(因此图片需要很大)。我该如何解决这个分数?
所以我试图解决我的网站糟糕的“服务缩放图像”等级 - 见这里:http ://cl.ly/image/1A430t0k1r0s
我正在使用由 Wordpress 提供支持的响应式网站。我在主页全宽滑块上使用了一张图片(因此图片需要很大)。我该如何解决这个分数?
You need to use the GZip compression technique and browser caching to resolve this problem. The below is the code for simple GZip compression but you can check it out in detail here
<FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf|svg|pdf|flv|mp3)$">
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 1 month 2 days 3 hours" //example you can change it
Header set Cache-Control "public"
</IfModule>
</FilesMatch>
Go for adaptive images if this still doesn't work.