Deindexed For Redirects ??

Discussion in 'SEO' started by seoindia, Jun 27, 2006.

  1. #1
    Have anybody ever experianced site getting deindexed in google as a result of redirects. Just few days back one of site got deindexed from google when i resubmiited the sitemap i got the message that -

    "No pages from your site are currently included in Google's index due to violations of the webmaster guidelines. Please review our webmaster guidelines and modify your site so that it meets those guidelines. Once your site meets our guidelines, you can request reinclusion and we'll evaluate your site. [?]
    Submit a reinclusion request"

    Is it possible that a websites breach any webmaster guideline if it follows redirects that too within the website. Its a php site with htaccess redirects...
     
    seoindia, Jun 27, 2006 IP
  2. CrankyDave

    CrankyDave Peon

    Messages:
    280
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #2
    What kind of redirects?

    Dave
     
    CrankyDave, Jun 27, 2006 IP
  3. seoindia

    seoindia Notable Member

    Messages:
    1,684
    Likes Received:
    101
    Best Answers:
    0
    Trophy Points:
    200
    #3
    java script

    a PHP search and replace of a foder "/sample/" in the URL
    and then dod
    did
    document.location.href = '<? echo $new_url; ?>'



     
    seoindia, Jun 27, 2006 IP
  4. CrankyDave

    CrankyDave Peon

    Messages:
    280
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #4
    CrankyDave, Jun 27, 2006 IP
  5. seoindia

    seoindia Notable Member

    Messages:
    1,684
    Likes Received:
    101
    Best Answers:
    0
    Trophy Points:
    200
    #5
    seoindia, Jun 27, 2006 IP
  6. CrankyDave

    CrankyDave Peon

    Messages:
    280
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Change all the redirects to 301 permanent redirects.

    In PHP they look like this...

    ader($_SERVER['SERVER_PROTOCOL'] . "
    301 Moved Permanently");
    header("Location: http://www.example.com/");
    exit;


    Go over your site with a fine toothed comb and make sure there's nothing else potentially wrong.

    Submit a reinclusion request

    http://www.mattcutts.com/blog/reinclusion-request-howto/

    Dave
     
    CrankyDave, Jun 27, 2006 IP