Results 1 to 14 of 14

Thread: domain.com and www.domain.com, google sees it as duplicate content..

  1. #1
    Devil pbracc's Avatar
    Join Date
    May 2006
    Location
    4, 8, 15, 16, 23, 42
    Posts
    3,454
    Rep Power
    0

    Default domain.com and www.domain.com, google sees it as duplicate content..

    Is it true that domain.com and www.domain.com is seen by google as duplicate content and especially after the last algo updates it's become one of the things that penalized many sites?
    Ive searched on google for "porn", the first 7 results (pornhub, youporn, etc.) do have in facts a redirect from no www to www.domain.
    The others on the first page (like xhamster, elephanttube) dont. I see that all the first ones have it but the others are still on first page without it.

    Any knowledge to share?
    Thanks

  2. #2
    Man, myth, legend. DamageX's Avatar
    Join Date
    Oct 2005
    Location
    Nomad
    Posts
    21,016
    Rep Power
    0

    Default

    Historically that has been the case. Nowadays, however, Google has gotten better at identifying the two as the same. That being said, the best way to prevent a fuckup on Google's part is to do a 301 redirect from the www version to the non-www version, or vice-versa. Your host should be able to help you with this, if you don't know how or are unable to do it.
    Work Smarter At Working Smarter

  3. #3
    howdy dowdy! arock's Avatar
    Join Date
    Jul 2006
    Posts
    2,337
    Rep Power
    0

    Default

    I wouldnt worry about it, vast majority of sites dont redirect to .www


    GF Revenue - 2257 Compliant Sites ~~AllRedheads Multi Model Redhead Program
    ICQ: 295-369-830 or gfy-at-aswebsolutions-dot-com

  4. #4
    asiansexland.com
    Join Date
    Oct 2006
    Location
    Mexico City
    Posts
    39
    Rep Power
    0

    Default

    No need to worry about that anymore. Google is able to figure that out.
    It was used to be a problem until 2009 or so when you had incoming links to different www or non-www version where you were bleeding authority and rank over 2 pages. In such case a simple redirect code like ADX said, would be useful.

  5. #5
    I want a real-doll
    Join Date
    Oct 2005
    Posts
    1,067
    Rep Power
    0

    Default

    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^(www\.|$) [NC]
    RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    Here is the code if anyone needs it

  6. #6
    Serious Contributor
    Join Date
    Dec 2006
    Posts
    1,533
    Rep Power
    0

    Default

    Use Webmaster Tools to tell us how you prefer your site to be indexed: You can tell Google your preferred domain (for example, http://www.example.com or http://example.com).

    http://support.google.com/webmasters...n&answer=66359

  7. #7
    Jack-of-all-trades JACOBKELL's Avatar
    Join Date
    Dec 2006
    Location
    In motion
    Posts
    4,806
    Rep Power
    0

    Default

    Quote Originally Posted by bud View Post
    Use Webmaster Tools to tell us how you prefer your site to be indexed: You can tell Google your preferred domain (for example, http://www.example.com or http://example.com).

    http://support.google.com/webmasters...n&answer=66359
    Yes that is key,301 redirect is not even needed.But problem after you do that google will not update for years your preferred way on serps
    *************************Unstoppable innovation machine***********

  8. #8
    Devil pbracc's Avatar
    Join Date
    May 2006
    Location
    4, 8, 15, 16, 23, 42
    Posts
    3,454
    Rep Power
    0

    Default

    Thanks guys, ive added it just to one site out of curiosity to see if anything changes.
    Ive used a code slightly different from the one used by thumbangels tho:

    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]

  9. #9
    from accounting
    Join Date
    Oct 2005
    Location
    California
    Posts
    16,457
    Rep Power
    0

    Default

    Quote Originally Posted by bud View Post
    Use Webmaster Tools to tell us how you prefer your site to be indexed: You can tell Google your preferred domain (for example, http://www.example.com or http://example.com).

    http://support.google.com/webmasters...n&answer=66359
    This is how I currently tell Google what it should be prioritizing.
    Hosting for ADX provided by Swiftwill
    "Happiness is positive cash flow"

  10. #10
    I love AskDamageX.com
    Join Date
    May 2011
    Posts
    84
    Rep Power
    0

    Default

    I also notice that in Webmaster tools, it will tell me I have duplicate content for trailing slash and non-slash urls.
    /tag/blowjob
    /tag/blowjob/

    I don't know how much of an issue it is but I put a rel=canonical meta tag on the one I preferred to be on the safe side.

  11. #11
    Man, myth, legend. DamageX's Avatar
    Join Date
    Oct 2005
    Location
    Nomad
    Posts
    21,016
    Rep Power
    0

    Default

    Quote Originally Posted by bud View Post
    Use Webmaster Tools to tell us how you prefer your site to be indexed: You can tell Google your preferred domain (for example, http://www.example.com or http://example.com).

    http://support.google.com/webmasters...n&answer=66359
    Using ANY Google tool = telling Google more than it needs to know about your business.
    Work Smarter At Working Smarter

  12. #12
    I love AskDamageX.com
    Join Date
    May 2011
    Posts
    84
    Rep Power
    0

    Default

    Quote Originally Posted by DamageX View Post
    Using ANY Google tool = telling Google more than it needs to know about your business.
    That's true but some things I think I want Google to know about my site. For example I have a site that gets a good amount of type-in traffic and I'd think that would be beneficial and something they wouldn't know otherwise.

  13. #13
    Jack-of-all-trades JACOBKELL's Avatar
    Join Date
    Dec 2006
    Location
    In motion
    Posts
    4,806
    Rep Power
    0

    Default

    Quote Originally Posted by notluxv View Post
    That's true but some things I think I want Google to know about my site. For example I have a site that gets a good amount of type-in traffic and I'd think that would be beneficial and something they wouldn't know otherwise.
    I was starting to think same lately,will see will that work or backfire
    *************************Unstoppable innovation machine***********

  14. #14
    You can't see me! Dred's Avatar
    Join Date
    Jan 2006
    Location
    I'm EVERYWHERE!
    Posts
    5,227
    Rep Power
    13

    Default

    Why choose just one or the the other?

    I use this in my .htaccess:
    Code:
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^www\.domainname\.com
    RewriteRule ^(.*)$ http://domainname.com/$1 [R=permanent,L]
    as well as setting it to non-www in Google Webmaster Tools.

    I figure it couldn't hurt to use both .htaccess AND Google WebmasterTools to cover my ass.

    I even hit up Bepe to update my ST license keys to be non-www as I build sites. I don't launch my MGPs until that change has been made (well, not until I update the license key and domain key in my ST admin after he's changed them).

Similar Threads

  1. avoiding duplicate content subdomains + htaccess
    By silicuda in forum Adult Webmaster Business & Traffic Main Discussion
    Replies: 3
    Last Post: December 23rd, 2008, 06:14 AM
  2. tgp turnkey content pages design and domain
    By fris in forum Adult Webmaster Business & Traffic Main Discussion
    Replies: 5
    Last Post: March 23rd, 2007, 01:24 PM
  3. Google PR on a domain with no outgoing links
    By Crunch in forum Adult Webmaster Business & Traffic Main Discussion
    Replies: 17
    Last Post: September 4th, 2006, 01:34 PM
  4. Your thoughts on duplicate content on sites, in terms of SEO
    By CraK in forum Adult Webmaster Business & Traffic Main Discussion
    Replies: 16
    Last Post: July 4th, 2006, 07:50 AM
  5. Duplicate Content and Google
    By NobleSavage in forum Adult Webmaster Business & Traffic Main Discussion
    Replies: 3
    Last Post: May 31st, 2006, 10:45 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •