Why do my web page were included twice by search engine?

Discussion in 'Google Analytics' started by bluehope, Feb 4, 2010.

  1. #1
    All pages are included twice. The only difference is network protocols, one is "http", and the other is "https".

    Why?
    How to deal with this problem?

    I need you help! Thank you!:)
     
    bluehope, Feb 4, 2010 IP
  2. Jenny23

    Jenny23 Peon

    Messages:
    44
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    This is because you apparently have https (SSL) activated for your website.

    If you are not using SSL you could 301 redirect all https pages to their http equivalent by adding this code in your htaccess file:

    RewriteCond %{HTTPS} =on [OR]
    RewriteCond %{SERVER_PORT} ^443$
    RewriteRule ^(.*)$ http://www.yourwebsiteaddress.com/$1 [R=301,L]

    After a while google would remove the https pages from the index
     
    Jenny23, Feb 4, 2010 IP
  3. bluehope

    bluehope Peon

    Messages:
    53
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    So kind of you! Thank you! Action now!
     
    bluehope, Feb 4, 2010 IP