How to Redirect http to https using htaccess

How to Redirect http to https using htaccess

Today we are going to show you how to do Redirect from http to https using .htaccess file. If you have a website with HTTP and you have purchased the SSL for your site then you want to redirect from http to https it’s hard but not impossible to manage redirection because till now every request to your site has HTTP before any request so how can redirect your every request code is below.

The below code when added to an .htaccess file will automatically redirect all web traffic to HTTPS.

http to https htacces example 1

Copy below code past inside you htaccess file, it will be redirect your website http to https

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
</IfModule>

http to https htacces example 2

This code will be work with several condition: phpkida.com to https://www.phpkida.com http://www.phpkida.com to https://www.phpkida.com https://phpkida.com to https://www.phpkida.com

RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [OR]
RewriteCond %{HTTP_HOST} ^phpkida\.com$ [NC]
RewriteRule ^ https://www.phpkida.com%{REQUEST_URI} [R=301,L,NE]
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /index\.php(/[^\ ]*)?\ HTTP/ 
RewriteRule ^index\.php(/(.*))?$ phpkida.com/$2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

http to https htacces example 3

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.phpkida.com/$1 [R,L]

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www.phpkida.com [NC]
RewriteRule (.*) https://www.phpkida.com/$1 [R=301,L]

You can also redirect http to https using php

Tags:

redirect to www htaccess codeigniter, codeigniter https htaccess, codeigniter: https not working, redirect http to https htaccess, codeigniter htaccess, redirect non www to www https, use ssl in codeigniter, htaccess redirect, Redirect from http to https using .htaccess file in codeigniter, How to redirect http to https in codeigniter

About Author

My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.

Sign up for weekly update

Milkshake is almost ready. If you're interested in testing it out, then sign up below to get exclusive access.