1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| ##### EXPIRE CACHING - LEVERAGE BROWSER CACHING ##### # Enable expirations ExpiresActive On # Set default expire time ExpiresDefault "access 2 week" # Specify expire time by file type ExpiresByType image/jpg "access 1 month" ExpiresByType image/jpeg "access 1 month" ExpiresByType image/gif "access 1 month" ExpiresByType image/png "access 1 month" ExpiresByType text/css "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType image/x-icon "access 1 month" ## END EXPIRE CACHING ## |