Read Also
Today XpertShout will share how to fix Leverage Browser Caching issue. The problem that often appears faced by bloggers is the speed of the site. the problem arises because of some things like optimize images, minify JavaScript and leverage browser caching.
How to Fix Leverage Browser Caching in Blogger
This problem is often encountered when we check blog speed through GTMetrix tool or Google PageSpeed Insights. Because browser caching leverage is also one of the determinants of blog loading speed, the faster the blog loading, the higher the blog traffic.Fix Leverage Browser Caching in Blogger
Simply to fix Leverage browser caching functions, set the expiration date or maximum age of HTTP / HTTPS headers that are directly related to source code like CSS, JavaScript and static images. So instruct the browser to load the Source Code that has been downloaded previously from local storage.Step One
To fix browser caching leverage, open the Blogger Dashboard then select Theme > Edit HTML button and add the code below just below <head>.
<include expiration='7d' path='*.css'/>
<include expiration='7d' path='*.js'/>
<include expiration='3d' path='*.gif'/>
<include expiration='3d' path='*.jpeg'/>
<include expiration='3d' path='*.jpg'/>
<include expiration='3d' path='*.png'/>
Once added, save the Theme.
It usually takes approximately one week after installation, then check the site again in GTMetrix or Google Page Speed InsightsThat's the only way to fix leverage browser caching issue & speed up loading your blog, by having a good blog speed it will be able to increase blog traffic.

No comments