WordPress can easily be configured to use SSL and you don't need a plugin to do it.
Table of Contents:
What is SSL - 0:27:26
Why a plugin isn't recommended - 1:55:52
Enabling SSL - 3:30:50
Enabling SSL on ISPConfig - 05:07:15
Enabling SSL on WordPress - 06:30:20
Permanently Redirecting HTTP to HTTPS using ISPConfig - 08:50:16
Permanently Redirecting HTTP to HTTPS using .htaccess - 09:46:13
Recap - 14:33:14
.htaccess code snippet:
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
0 comments