Fix leverage browser caching wordpress without plugin



















Leveraging Browser Cache is really important to improve your web page loading time.
Paste code in your .htaccess file
<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 text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType application/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"
</IfModule

Comments

Popular posts from this blog

What is Burp Suite and how to hack facebook or any username and password using burp suite.

Program to do binary search of element in C