2
私は、Zendのフレームワークを使用して、私は私がcss.phpの有効期限ヘッダーを設定するにはどうすればよいこのcss.phpの有効期限ヘッダを設定するにはどうすればよいですか?
のようにCSSファイルをたくさん持っていますか? 実際、私の.htaccessはそれで動作しません。
マイ.htacess:
<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# Default directive
ExpiresDefault "access plus 1 month"
# My favicon
ExpiresByType image/x-icon "access plus 1 year”
# Images
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# CSS
ExpiresByType text/css "access 1 month”
# Javascript
ExpiresByType application/javascript "access plus 1 year"
</IfModule>
が
私はあなたの.htaccessしか使用が – Rocstar
を変更した.htaccessファイルに以下試してくださいありがとうキャッシング後に変更されましたか? :) – Sree
はい私はPageSpeed Insights with Googleをチェックしています:) – Rocstar