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] […]