Force HTTPS option in WP plugin or use Really Simple SSL

#1
I thought I saw an option in the LiteSpeed Cache plugin for WordPress to force HTTPS but I cannot seem to find it. If there is one, where can I find it?

Also, would it be preferable to use this option in the LiteSpeed plugin vs. using the Really Simple SSL WP plugin?
 

Unique_Eric

Administrator
Staff member
#2
Hi @digitalwires ,

There's a function called "Improve HTTP/HTTPS Compatibility" but it's not force https.
Please add rewrite functions to .htaccess file to make force https works.
Code:
RewriteCond %{SERVER_PORT} 80
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
LSCache should be ok with "Really Simple SSL WP plugin". But if you are using crawler function from LSCache, then it maybe not idea to use simple ssl plugin due to crawler may treat http/https as different urls to crawl.

Best
 
Top