Skip to content

Instantly share code, notes, and snippets.

View alphadc's full-sized avatar

Irwan Sudarsin Salim alphadc

  • Indonesia
View GitHub Profile
@alphadc
alphadc / .htaccess
Created June 30, 2023 03:39
htaccess to add expiry headers and gzip
## EXPIRES HEADER CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
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/svg "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
@alphadc
alphadc / .htaccess
Created June 30, 2023 03:38
htaccess to add expiry headers and gzip
## EXPIRES HEADER CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
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/svg "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"