Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-01-05 12:23:24 +0300
committerMorris Jobke <hey@morrisjobke.de>2015-01-05 12:23:24 +0300
commite97219cf75b44dc37af9c1932ea1da3a285254fe (patch)
treeaf13c98dd86607d7d2361dc560a8018ed7e67de1 /.htaccess
parentf2e759b53317a10c585c1dd123382f0f147af228 (diff)
escape . in htaccess regex for CSS and JS HTTP headers
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess2
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index 10adb902ff5..eef4ead0179 100644
--- a/.htaccess
+++ b/.htaccess
@@ -41,7 +41,7 @@ Options -Indexes
ModPagespeed Off
</IfModule>
<IfModule mod_headers.c>
- <FilesMatch ".(css|js)$">
+ <FilesMatch "\.(css|js)$">
Header set Cache-Control "max-age=7200, public"
</FilesMatch>
</IfModule>