gt fix
Signed-off-by: Jeff <jeff@gotenzing.com>
Showing
1 changed file
with
32 additions
and
0 deletions
| 1 | <IfModule mod_expires.c> | ||
| 2 | ExpiresActive On | ||
| 3 | |||
| 4 | # Images | ||
| 5 | ExpiresByType image/jpeg "access plus 1 year" | ||
| 6 | ExpiresByType image/gif "access plus 1 year" | ||
| 7 | ExpiresByType image/png "access plus 1 year" | ||
| 8 | ExpiresByType image/webp "access plus 1 year" | ||
| 9 | ExpiresByType image/svg+xml "access plus 1 year" | ||
| 10 | ExpiresByType image/x-icon "access plus 1 year" | ||
| 11 | |||
| 12 | # Video | ||
| 13 | ExpiresByType video/webm "access plus 1 year" | ||
| 14 | ExpiresByType video/mp4 "access plus 1 year" | ||
| 15 | ExpiresByType video/mpeg "access plus 1 year" | ||
| 16 | |||
| 17 | # Fonts | ||
| 18 | ExpiresByType font/ttf "access plus 1 year" | ||
| 19 | ExpiresByType font/otf "access plus 1 year" | ||
| 20 | ExpiresByType font/woff "access plus 1 year" | ||
| 21 | ExpiresByType font/woff2 "access plus 1 year" | ||
| 22 | ExpiresByType application/font-woff "access plus 1 year" | ||
| 23 | |||
| 24 | # CSS, JavaScript | ||
| 25 | ExpiresByType text/css "access plus 1 year" | ||
| 26 | ExpiresByType text/javascript "access plus 1 year" | ||
| 27 | ExpiresByType application/javascript "access plus 1 year" | ||
| 28 | |||
| 29 | # Others | ||
| 30 | ExpiresByType application/pdf "access plus 1 year" | ||
| 31 | ExpiresByType image/vnd.microsoft.icon "access plus 1 year" | ||
| 32 | </IfModule> | ||
| 1 | 33 | ||
| 2 | # BEGIN WordPress | 34 | # BEGIN WordPress |
| 3 | # The directives (lines) between `BEGIN WordPress` and `END WordPress` are | 35 | # The directives (lines) between `BEGIN WordPress` and `END WordPress` are | ... | ... |
-
Please register or sign in to post a comment