Apache htaccess server gz javascript # and css files.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<files *.js.gz> | |
ForceType text/javascript | |
Header set Content-Encoding: gzip | |
</files> | |
RewriteEngine On | |
RewriteCond %{HTTP_USER_AGENT} !".*Safari.*" | |
RewriteCond %{HTTP_USER_AGENT} !".*MSIE.*" | |
RewriteCond %{HTTP:Accept-Encoding} gzip | |
RewriteCond %{REQUEST_FILENAME}.gz -f | |
RewriteRule (.*)\.js$ $1\.js.gz [L] | |
ForceType text/javascript | |
ForceType text/css | |
Header set Content-Encoding: gzip | |
RewriteEngine On | |
RewriteCond %{HTTP_USER_AGENT} !".*Safari.*" | |
RewriteCond %{HTTP_USER_AGENT} !".*MSIE.*" | |
RewriteCond %{HTTP:Accept-Encoding} gzip | |
RewriteCond %{REQUEST_FILENAME}.gz -f | |
RewriteRule (.*)\.css$ $1\.css.gz [L] | |
ForceType text/css | |
ExpiresActive On | |
ExpiresDefault A300 | |
ExpiresByType image/x-icon A2592000 | |
ExpiresByType application/x-javascript A3600 | |
ExpiresByType text/javascript A604800 | |
ExpiresByType text/css A604800 | |
ExpiresByType image/gif A604800 | |
ExpiresByType image/png A604800 | |
ExpiresByType image/jpeg A604800 | |
ExpiresByType text/plain A300 | |
ExpiresByType application/x-shockwave-flash A604800 | |
ExpiresByType video/x-flv A604800 | |
ExpiresByType application/pdf A604800 | |
ExpiresByType text/html A300 < |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment