キャッシュの設定をする
# 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