happyfoolz (January 24th, 2013)
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# START Compression
<IfModule mod_deflate.c>
# compress text, html, javascript, css, xml, (and more):
# compress text, html, javascript, css, xml, (and more):
AddOutputFilterByType DEFLATE text/css text/plain text/html text/richtext
AddOutputFilterByType DEFLATE text/javascript application/x-javascript application/javascript application/json
AddOutputFilterByType DEFLATE text/x-component image/svg+xml text/xsd text/xsl text/xml image/x-icon
</IfModule>
# END Compression
# START Expires
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access 2 days"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/ico "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/javascript "access 1 month"
ExpiresByType image/x-icon "access 1 year"
</IfModule>
# END Expires
happyfoolz (January 24th, 2013)
There are currently 1 users browsing this thread. (0 members and 1 guests)