PDA

View Full Version : How to redirect site from http to https?



swatijain2233
05-14-2019, 04:24 AM
Hello friends,


I Have face A problem In My Website,Please tell me, How to redirect site from http to https?

RH-Calvin
05-14-2019, 10:16 PM
You can use 301 redirect. 301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It's not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it's the safest option. The code "301" is interpreted as "moved permanently".

ImpalaWardrobes
05-15-2019, 03:26 AM
There are many ways you can redirect your website from http to https.

1. Using .htaccess

Open your .htaccess file and add this code.

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

After successfully, You will redirect your website from HTTP to HTTPS.