- Dec 2, 2015
- 6,470
- 2,973
I win some domain in auction. Most of the backlinks are on the homepage and in Http version. So i need to redirect Http to Https. Also some backlinks are on www and non-www. So to backlinks remain i need to change htaccess file with code below! Just want to ask is code correct and is that all i need to do...?
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]