私はhttps://developers.google.com/speed/pagespeed/insights/を使用しています。これは自分のサイトのすべての画像がキャッシュされていないことを示しています。レバレッジブラウザのキャッシュ - 有効期限が設定されていません
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
## EXPIRES CACHING ##
そして、この:私はこれで.htaccessファイルを編集し、W3トータルキャッシュを使用してみました
<filesMatch ".(ico|pdf|flv|jpg|svg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=84600, public"
</filesMatch>
コードが、無駄に。 イメージがキャッシュされないのはなぜですか?これを修正する方法はありますか?
ページスピードへのリンク:https://developers.google.com/speed/pagespeed/insights/?url=darbas.pcz.lt
は、事前にありがとうございます!
少なくともスキャンの出力を表示することができますか、私たちにウェブサイトなどを教えてもらえますか? – mike510a
はい。 https://developers.google.com/speed/pagespeed/insights/?url=darbas.pcz.lt –
mod_expiresモジュールを読み込んでもらえませんか? – mike510a