2 Htaccess
2 Htaccess
c>
RewriteEngine On
<FilesMatch "(?i)\.(zip|rar)$">
Deny from all
</FilesMatch>
# Expire Caching
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access 1 year"
#Font
AddType application/Cabin-Regular-TTF .ttf
AddType application/fontawesome-webfont .woff2
# Images
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType image/webp "access 1 year"
ExpiresByType image/svg+xml "access 1 year"
ExpiresByType image/x-icon "access 1 year"
# Video
ExpiresByType video/mp4 "access 1 year"
ExpiresByType video/mpeg "access 1 year"
# CSS, JavaScript
ExpiresByType text/css "access 1 year"
ExpiresByType application/javascript "access 1 year"
ExpiresByType application/x-javascript "access 1 year"
# Others
ExpiresByType application/pdf "access 1 year"
ExpiresByType application/x-shockwave-flash "access 1 year"
ExpiresByType application/font-woff "access 1 year"
ExpiresByType application/font-woff2 "access 1 year"
</IfModule>