index: release v1.18 with only altgr index linked
[sheet.git] / .htaccess
index 61d5f361294680c77f63a66552a6f35cee1c4d2e..90f32b4dea33dea798eae4db36313137dd1e1ecd 100644 (file)
--- a/.htaccess
+++ b/.htaccess
@@ -1,6 +1,7 @@
 Options        -MultiViews -Indexes
 DirectoryIndex index.plp
 DirectorySlash Off
+AddCharset     utf-8 .txt
 
 RewriteEngine  on
 RewriteBase    /
@@ -33,9 +34,12 @@ RewriteCond %{HTTP_ACCEPT}           \bimage/webp
 RewriteCond %{DOCUMENT_ROOT}/$1.webp -f
 RewriteRule (.*)\.jpg$               $1.webp
 
-# allow browsers to cache for upto a month
+# allow browsers to cache static assets for upto a month
 <IfModule headers_module>
-<FilesMatch "\.(?:css|js|json)$">
+<FilesMatch "\.(?:css|gif|png|jpg|webp|jxl|svg)$">
+Header set Cache-Control "max-age=2592000"
+</FilesMatch>
+<FilesMatch "\.(?:js|json)$">
 Header set Cache-Control "max-age=2592000"
 Header set Access-Control-Allow-Origin "*"
 </FilesMatch>