Add Auto SSL Certificate To Websites On Liquidweb

This is something specific to LiquidWeb hosting. To add the free AutoSSL cert to a domain do this:

1) From your WHM login, go to Manage AutoSSL.
2) Choose Manage Users tab.
3) Find the domain you want to add the SSL and then click on the Check “[doman”] button.
4) To see if it worked, click the Logs tab and Refresh. Review the log file to see if it’s successful. Log entry will be at the bottom of the file.
5) On the domain, add this to the .htaccess file to redirect to the SSL URL.

### Begin SSL Redirect
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
### End SSL Redirect