How to redirect HTTP to HTTPS

https://www

This is a guide, that will show You an easy way to redirect all non-https request to https.

Why would you do this?

Depends on what kind of site you are hosting. For example, if you are running a billing site, and you want to ensure that all traffic is secure.

To force forwarding, there are two easy ways to do this.

1) Edit/Create a .htaccess file in the folder your site is being served from (normally public_html).

2) Add the following code to the .htaccess file.

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

3) Save the file and check the results in your web browser by trying to access your site using standard http rather than https. If it is working correctly, you should be automatically redirected to https.

Note 1: If there is .htaccess file in directories that are child of Web Root, the last .htaccess file will be executed

Note 2: If You do not have an SSL certificate set up for your site, this will cause errors. Please make sure that you have an SSL certificate installed and properly working before forcing redirection (rewrite).

Do you need reliable web hosting services? Choose from our variety of plans.

Get Started!
icon knowledge

Related Articles

Web Software installation

With BGOcloud's cPanel hosting service You can set-up advanced web-based software in...

Build a website with Drag and Drop using SitePad (formerly SiteMush)

Want to build your personal or business website on your own, but feel like don't have enough...

IPv6 (Internet Protocol version 6) Address

Here in bgocloud.com You can use IPv6 (Internet Protocol version 6) address space for free with...

How To: Installing Drupal in cPanel using the Softaculous Apps installer

Hey there, are you trying to navigate your way around Drupal? That powerful, open-source content...