diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-01-05 10:23:24 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-01-05 10:23:24 +0100 |
commit | e97219cf75b44dc37af9c1932ea1da3a285254fe (patch) | |
tree | af13c98dd86607d7d2361dc560a8018ed7e67de1 /.htaccess | |
parent | f2e759b53317a10c585c1dd123382f0f147af228 (diff) | |
download | nextcloud-server-e97219cf75b44dc37af9c1932ea1da3a285254fe.tar.gz nextcloud-server-e97219cf75b44dc37af9c1932ea1da3a285254fe.zip |
escape . in htaccess regex for CSS and JS HTTP headers
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 2 |
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> |