|
@@ -12,6 +12,22 @@ RewriteRule ^ /index.html
|
12
|
12
|
</FilesMatch>
|
13
|
13
|
</IfModule>
|
14
|
14
|
|
|
15
|
+<FilesMatch "\.(css|js)$">
|
|
16
|
+ <IfModule mod_expires.c>
|
|
17
|
+ ExpiresActive Off
|
|
18
|
+ </IfModule>
|
|
19
|
+ <IfModule mod_headers.c>
|
|
20
|
+ FileETag None
|
|
21
|
+ Header unset ETag
|
|
22
|
+ Header unset Pragma
|
|
23
|
+ Header unset Cache-Control
|
|
24
|
+ Header unset Last-Modified
|
|
25
|
+ Header set Pragma "no-cache"
|
|
26
|
+ Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
|
|
27
|
+ Header set Expires "Thu, 1 Jan 1970 00:00:00 GMT"
|
|
28
|
+ </IfModule>
|
|
29
|
+</FilesMatch>
|
|
30
|
+
|
15
|
31
|
<IfModule mod_mime.c>
|
16
|
32
|
AddType application/x-javascript .js
|
17
|
33
|
AddType text/css .css
|