diff options
author | uvok cheetah | 2020-05-17 17:58:36 +0200 |
---|---|---|
committer | uvok cheetah | 2020-05-17 17:58:36 +0200 |
commit | e9700a6bfc17e94d131c11c8c980202d739d73f8 (patch) | |
tree | f55946f55d6d0cabd0b378bd0b335987643a3a33 | |
parent | 98734e657e957e6fbc266445619b47ffb2c22f32 (diff) |
Change caching for html to none (?)
-rw-r--r-- | .htaccess | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,3 +1,5 @@ -<filesMatch "index.html$"> -Header set Cache-Control "max-age=86400, public" -</filesMatch> +<IfModule mod_expires.c> +ExpiresActive on +ExpiresDefault "access plus 1 week" +ExpiresByType text/html "access plus 0 seconds" +</IfModule> |