How to update or change PHP Version in cPanel

A cPanel supports multiple versions of PHP. With this article, we will see how to change the PHP version for a domain or website. To change the PHP version, follow these steps: Login to cPanel and select the “MultiPHP Manager” option from the software section. Here, you will see all your domains and subdomains. Select […]

Read More

How to force SSL with .htaccess?

To force the HTTPS connection on your website, add the following lines inside the website’s .htaccess file: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] If your website is made with WordPress then you can also use the Realy Simple SSL plugin to solve it.

Read More