mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #13103 from owncloud/fix-htaccess-regex
escape . in htaccess regex for CSS and JS HTTP headers
This commit is contained in:
commit
0e17a00b62
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue