“FINALLY Learn the Techniques to Get Your WordPress Website Loading Faster to FORCE Google to Rank Your Website Higher”
FREE Guide Shows You How to Increase the Speed of Any WordPress Website!
Hello!
Is your website loading way too slowly? If so, Google sees your website providing a poor user experience and they will rank faster websites higher (your competition).
Why?
Because, think about it… if you’re Google, you want to provide the best results possible, right? That includes giving results of website that load quickly. Google even came out and told website owners this is what they want. That means speed is a ranking factor!
How fast your website loads is…
a Google ranking factor within your control!
Let that sink in… a Google ranking factor YOU have control of.
My name is Tony and I’ve been creating websites since 1994 (yeah, the beginning of the Web). I’ve become particularly good at creating WordPress websites since I’ve made hundreds of them myself and my team is nearing 1,000 website projects completed. I also know how to make them load fast so you can get Google PageSpeed scores like this:
Two, Quick Tips to Increase Page Speed
- Get on the latest version of PHP. If you’re not on PHP 7 yet, where have you been? There are huge reductions in time when you do that. And then going from 7.2.22 to 7.3.9 gives you another 15% increase as well. So get on the latest version. You may have to do some testing to make sure your website and all plugins are compatible with the latest version of PHP.
- Enable browser caching. Use the code below in your .htaccess file to enable it:
# Browser Caching START - Google wants each setting to be 30+ days <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/gif "access 1 year" ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType image/x-icon "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/javascript "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/javascript "access 1 month" ExpiresByType application/x-javascript "access 1 month" ExpiresByType application/xhtml-xml "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresDefault "access 1 month" </IfModule> # Browser Caching END
Get More Great Tips Here