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.
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>
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]
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
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
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.