How one can repair some ultimate WordPress SSL settings
0 Views
After putting in an SSL certificates and having the plugin Actually Easy SSL on WordPress, there are nonetheless some errors (some issues keep “disabled”). To repair all of them, do that:1. Allow HTTP Strict Transport Safety (HSTS)Open your .htaccess file in your root listing and add this:
Code:
Header set Strict-Transport-Safety “max-age=31536000” env=HTTPS
2. Set Safe CookiesAdd within the wp-config.php file in your root listing and add this:
Code:
//Start Actually Easy SSL session cookie settings
@ini_set(‘session.cookie_httponly’, true);
@ini_set(‘session.cookie_secure’, true);
@ini_set(‘session.use_only_cookies’, true);
//END Actually Easy SSL cookie settings
🔥 Hot and trending web hostings deals 🔥

WPX.net – Get 2 Months Hosting For FREE
2 Months Free!

eUKhost – Get The Best Of Managed Web Hosting
Good Price!

Temok – Hosting, VPS And Servers At Great Price
Good Price!
Show next