zunda_shiwake/deploy/apache-cache.htaccess
2026-06-08 23:53:34 +09:00

17 lines
420 B
Text

# Use this from the static site root when served by Apache with .htaccess enabled.
FileETag MTime Size
<IfModule mod_headers.c>
<Files "index.html">
Header set Cache-Control "no-cache"
</Files>
<FilesMatch "\.(js|css)$">
Header set Cache-Control "no-cache"
</FilesMatch>
</IfModule>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/css application/javascript text/javascript
</IfModule>