Blog
Free SSL cPanel & WHM’s
e AutoSSL interface, and adjust the selected toggle to cPanel. Then click save. Source: cPanel & WHM's AutoSSL | cPanel Blog
Force site to load SSL with an .htaccess file.
The following forces any http request to be rewritten using https. For example, the following code forces a request to http://example.com to load https://example.com. It also forces directly linked resources (images, css, etc.) to use https: RewriteEngine On...
301 redirect via .htaccess
Redirect individual files To redirect individual files, like example.com/oldfile.htm to newfile.htm you can use a 301 redirect like this in .hatccess fie: Redirect 301 /oldfile.htm /newfile.htm To redirect one specific file to another domain such...