目次
画像、CSS、JavaScriptファイルのキャッシュを無効化する
次のコードを .htaccess ファイルに追加します。
特定の種類のファイル(画像、CSS、JavaScript)のキャッシュを無効にする方法です。
1 2 3 4 5 6 7 8 9 10 |
<IfModule mod_headers.c> # 特定のファイルのキャッシュを無効化 <FilesMatch "\.(jpg|jpeg|png|gif|css|js)$"> Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0" Header set Pragma "no-cache" Header set Expires "Wed, 11 Jan 1999 00:00:00 GMT" </FilesMatch> </IfModule> |
全てのファイルのキャッシュを無効にする場合
1 2 3 4 5 6 7 8 9 10 |
# 全てのファイルのキャッシュを無効化 <IfModule mod_headers.c> <FilesMatch ".*"> Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0" Header set Pragma "no-cache" Header set Expires "Wed, 11 Jan 1999 00:00:00 GMT" </FilesMatch> </IfModule> |