キャッシュの設定をする

投稿日:2022-11-06 投稿者:PS カテゴリ:その他 タグ: , ,

# PS - Cache Control 
<IfModule mod_headers.c>
<FilesMatch "\.(css|js|gif|jpe?g|png|webp|svg|ico)$">
  Header set Cache-Control "public, max-age=2592000"   # 30日
</FilesMatch>
<FilesMatch "\.(eot|ttf|woff|woff2)$">
  Header set Cache-Control "public, max-age=31536000"  # 365日
</FilesMatch>
<FilesMatch "\.(html|php)$">
  Header set Cache-Control "public, max-age=1800"      # 30分
</FilesMatch>
</IfModule>
# END PS