Tip of the day: How to make https connection faster

serpent_driver

Well-Known Member
#1
Tip of the day: How to make https connection faster

There is a simple way to make https requests faster. It works with every webserver, browser and device, with and without LScache. Google maintains an HSTS preload service. By following the guidelines and successfully submitting your domain, browsers will never connect to your domain using an insecure connection. While the service is hosted by Google, all browsers have stated an intent to use (or actually started using) the preload list.

What has to be done to use it?

Add this line of code to your .htaccess

Code:
Strict-Transport-Security: max-age=31536000; includeSubDomains
If done visit https://hstspreload.org/ , enter domain name (not www.domain.com or https://domain.com, only domain.com) and add your domain to HSTS preload list. It can take some weeks until your domain is added to the list.

******************************************************************************************************************************************************************************************************
Join https://www.cachecrawler.com - Lightning fast Cache Warmup Crawler for Wordpress, OpenCart, PrestaShop, W3 Total Cache, WP Rocket, Shopware and Magento.


******************************************************************************************************************************************************************************************************
 
Last edited:
Top