Skip to content

Instantly share code, notes, and snippets.

@psics
Created April 24, 2017 11:09
Show Gist options
  • Save psics/7165879c7c29b4fadaecc49ab29d17d1 to your computer and use it in GitHub Desktop.
Save psics/7165879c7c29b4fadaecc49ab29d17d1 to your computer and use it in GitHub Desktop.
Для pagespeed
<IfModule mod_expires.c>
<FilesMatch \.(gif|png|jpg|jpeg|ogg|mp4|mkv|flv|swf|wmv|asf|asx|wma|wax|wmx|wm)$>
ExpiresDefault "access plus 1 year"
</FilesMatch>
ExpiresActive on
ExpiresByType image/jpeg "access plus 7 day"
ExpiresByType image/gif "access plus 7 day"
ExpiresByType image/png "access plus 7 day"
<FilesMatch \.(css|js)$>
ExpiresDefault "access plus 1 year"
</FilesMatch>
ExpiresByType text/css "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment