Let’s Encrypt SSL certificates can utilize 4096-bit private keys and feature full SHA-2 support and 256-bit encryption
Do I need a dedicated IP to use a SSL certificate?
If you are using Host Might web hosting and want to use an SSL certificate, you do not need to purchase a dedicated IP address.
How to manage your domain?
login to your client area at https://secure.hostmight.com/clientarea.php to manage your new domain. Once you logged in, click on Domains -> My Domains After that, click on “Manage Domain” button against your domain name for which you want to Manage. This will load the specific domains management page with multiple available […]
How to force SSL with .htaccess
You can force an HTTPS connection on your website by adding these rules in your website’s .htaccess file: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://yourdomain.com/$1 [R=301,L] If your website is in a subfolder, use this code instead: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} folder RewriteRule ^(.*)$ https://yourdomain.com/folder/$1 [R=301,L] […]