Issues with HTTP/HTTPS site versions

Celestial711

Newbie
Joined
Jun 9, 2015
Messages
30
Reaction score
1
After moving a site from http to https and analysing the site with website auditor - it seems that there is duplicate content issues. How can this be solved?
 

Attachments

  • Screen Shot 2017-10-10 at 9.32.53 AM.png
    Screen Shot 2017-10-10 at 9.32.53 AM.png
    20.8 KB · Views: 196
Have you redirected from HTTP to HTTPS? In htacess something like

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

or

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
 
Yes the redirect to https is done but when doing an audit I still see the http version of the homepage
 
is it a wordpress site? there is a plugin called really simple ssl that fixes everything!
 
Although in place have you manually checked? Depending on size of site use ScreamingFrog (start with http://www.example.com and crawl up to 500 URLs).
When I scan http://www.example.com with screaming frog there is 1 result which is the homepage
 
Back
Top