forked from apache/carbondata-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
23 lines (21 loc) · 861 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
RedirectMatch 404 /\.htaccess
<FilesMatch "\.html$">
FileETag None
Header unset ETag
Header unset Pragma
Header unset Cache-Control
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Thu, 1 Jan 1970 00:00:00 GMT"
</FilesMatch>
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType text/html "access plus 0 seconds"
ExpiresByType image/png "access plus 1 day"
ExpiresByType image/jpg "access plus 1 day"
ExpiresByType image/jpeg "access plus 1 day"
ExpiresByType text/css "access plus 1 day"
ExpiresByType application/javascript "access plus 1 day"
ExpiresByType application/json "access plus 1 day"
ExpiresDefault "access plus 10 days"
</IfModule>