1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

I am worried....

Discussion in 'Websites' started by icare, Feb 18, 2006.

  1. #1
    its wierd that www.mysite.com has 3pr and www.mysite.com/index.php has no pr. so I i was just wonder if google will thing these as two pages and and is there any possiblity that i get duplicate content plenty?
     
    icare, Feb 18, 2006 IP
  2. phoenixcarpet

    phoenixcarpet Peon

    Messages:
    137
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #2
    They dont give you a duplicate penalty for something on the same domain.
     
    phoenixcarpet, Feb 18, 2006 IP
    fsmedia likes this.
  3. Thomas Holmes

    Thomas Holmes Peon

    Messages:
    54
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Hmm, surprised this is happening.

    Matt Cutts spoke about this sort of thing on his blog and said they were able to figure this stuff out. He was talking about www.example.com versus example.com as well. Maybe the pr was just mixed up or something....

    You might find something on his site and you could post a comment asking. He seems pretty accomodating...

    but as phoenixcarpet said, they are unlikely to penalise for the same domain.

    thomas
     
    Thomas Holmes, Feb 19, 2006 IP
  4. gordonfreeman

    gordonfreeman Peon

    Messages:
    169
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    you can make a redirect, so your site/index.php will redirect to site/ (htaccess)
     
    gordonfreeman, Feb 19, 2006 IP
  5. icare

    icare Peon

    Messages:
    714
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #5

    how should i do that? is playing with htaccess file safe?
     
    icare, Feb 19, 2006 IP
  6. Attilitus

    Attilitus Peon

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    An easy way to remedy this issue is to ensure that all links point to yourdomain(dot)com/ and not your domain(dot)com/index.php

    This happened to me as well, and although it does correct itself, it is best to have your aggragate page rank on a single page rather than spread out between the one that the search engines first time adn the one that they are redirected to upon finding internal links within your site.
     
    Attilitus, Feb 19, 2006 IP
  7. gordonfreeman

    gordonfreeman Peon

    Messages:
    169
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #7
    this is the .htaccess you should have in order to avoid any problems with search engines:

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^domain\.com [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php\ HTTP/
    RewriteRule ^(.*)index\.php$ http://www\.domain\.com/$1 [L,R=301]
    Code (markup):
    (if this doesn work, try adding "Options +FollowSymLinks" without quotations before the "RewriteEngine On" rule)

    it should work like this: http://domain.com and anything after it, http://domain.com/index.php, http://www.domain.com/index.php and http://WWW.DOMAIN.COM all lead to http://www.domain.com
     
    gordonfreeman, Feb 20, 2006 IP
  8. celsius

    celsius Guest

    Messages:
    86
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I'm would'nt be to sure of that. In the past my employer wanted to be found in the SE's with the search phrase 'keyword + city' where city can be seen a any city in my country (no cloaking or what soever, pages where availible for our visitors).

    I've created about 20 pages with almost the same text on it except the cities would change. I've dominaded google for about 4 months with these phrases. Then I've got a (duplicate) penalty and the pages did'nt show up in the SRP's anymore. (only those pages with the duplicated text, for my other keywords and phrases it did'nt have any effect (still in the top 10).

    So you could get a duplicate penalty if you do it to much I think.:eek:
     
    celsius, Feb 20, 2006 IP
  9. chrisd

    chrisd Well-Known Member

    Messages:
    213
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    110
    #9
    Is the order the options important ?

    Is
    [NC,L,R=301]
    the same as:
    [L,NC,R=301]
    or
    [R=301,NC,L]
    Thanks,
    Christophe
     
    chrisd, Feb 20, 2006 IP