different amount of pages for www vs non ww indexed bad news?

Discussion in 'Search Engine Optimization' started by MrBounce, May 15, 2007.

  1. #1
    so site,com has 58,000 pages indexed , while www,site,com has 39,000.

    does this pose a problem seo wise? would a 301 redirect solve this problem?
     
    MrBounce, May 15, 2007 IP
  2. sweetfunny

    sweetfunny Banned

    Messages:
    5,743
    Likes Received:
    467
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Yes definately 301 redirect non www to www as soon as possible.
     
    sweetfunny, May 15, 2007 IP
  3. ServerUnion

    ServerUnion Peon

    Messages:
    3,611
    Likes Received:
    296
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Agree, that would be a quick and easy fix.
     
    ServerUnion, May 15, 2007 IP
  4. MrBounce

    MrBounce Active Member

    Messages:
    215
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    60
    #4
    thanks guys. one question though, if they do return different amounts of indexed pages, does that mean some will be thought of as duplicate content ?
     
    MrBounce, May 16, 2007 IP
  5. sweetfunny

    sweetfunny Banned

    Messages:
    5,743
    Likes Received:
    467
    Best Answers:
    0
    Trophy Points:
    0
    #5
    They can be yes, Google along with other bots see www and http versions as different pages. Matt Cutt's blogged about it here.
     
    sweetfunny, May 16, 2007 IP
  6. sandrodz

    sandrodz Peon

    Messages:
    1,482
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #6
    I've same issue, but without www site shows allot of backlinks from other sites, so maybe thats the issue?

    how do I do that redirect? can u give me htaccess example?
    thx.
     
    sandrodz, May 16, 2007 IP
  7. MrBounce

    MrBounce Active Member

    Messages:
    215
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    60
    #7
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^domain\.com$
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
     
    MrBounce, May 16, 2007 IP
  8. majorbta

    majorbta Peon

    Messages:
    250
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #8
    if you don't have .htaccess, like for a VPS, you can use this PHP one

    <?php
    if (substr($_SERVER['HTTP_HOST'],0,3) != 'www') {
    header('HTTP/1.1 301 Moved Permanently');
    header('Location: http://www.'.$_SERVER['HTTP_HOST']
    .$_SERVER['REQUEST_URI']);
    }
    ?>
     
    majorbta, May 16, 2007 IP
  9. sandrodz

    sandrodz Peon

    Messages:
    1,482
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #9
    hi, I have following rewrite rule in my htaccess, so do I add that one below? or do I blend them?

    is this correct:
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /college-guide/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /college-guide/index.php [L]
    </IfModule>

    # END WordPress

    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^flunkme\.com$
    RewriteRule ^(.*)$ http://www.flunkme.com/$1 [R=301,L]
     
    sandrodz, May 16, 2007 IP
  10. RobertD

    RobertD Peon

    Messages:
    542
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #10
    after you add the 301 redirect you can tell Google in your webmaster tools account your preferred domain, either with the www or without, this is something I recently changed also.
     
    RobertD, May 16, 2007 IP
  11. MrBounce

    MrBounce Active Member

    Messages:
    215
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    60
    #11
    where do you tell them that? its not a removal request is it because that matt cutts blog specifically advised against that?
     
    MrBounce, May 17, 2007 IP
  12. majorbta

    majorbta Peon

    Messages:
    250
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #12
    In the webmaster tools, you can state which url of your website you want to show up in the serps
     
    majorbta, May 17, 2007 IP
  13. sweetfunny

    sweetfunny Banned

    Messages:
    5,743
    Likes Received:
    467
    Best Answers:
    0
    Trophy Points:
    0
    #13
    I strongly advise against using this, always use the .htaccess directive to tell search engines which URL to use.
     
    sweetfunny, May 17, 2007 IP