From 59e86f61b7100e6f9c7535889221645354f94e04 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Mon, 21 Feb 2005 04:01:24 +0000 Subject: [PATCH] #5900: Fix mod_expire forcing page caching on the client side. --- .htaccess | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.htaccess b/.htaccess index caeee72fba7a..98872f0166ac 100644 --- a/.htaccess +++ b/.htaccess @@ -36,6 +36,12 @@ DirectoryIndex index.php # in /sites/default/settings.php </IfModule> +# Overload mod_expires variables. +<IfModule mod_expires.c> + # Reduce the time dynamically generated HTML pages are cache-able. + ExpiresByType text/html A1 +</IfModule> + # Various rewrite rules <IfModule mod_rewrite.c> RewriteEngine on -- GitLab