incoming links to a page with noindex - will it be indexed?

Discussion in 'Search Engine Optimization' started by diet, Jul 12, 2009.

  1. #1
    hi all

    i have some pages on a site that i need to keep them not indexed, so i use the meta robots "noindex" tag. now I need to link to these pages.
    will these pages still be unidexed if they have incoming links from other domains?

    i wll also add a rule on robots.txt - disallowing to crawl to these pages.
     
    diet, Jul 12, 2009 IP
  2. choice

    choice Prominent Member

    Messages:
    5,444
    Likes Received:
    490
    Best Answers:
    0
    Trophy Points:
    350
    Digital Goods:
    2
    #2
    if you disallow the bots from those pages they should`nt get indexed
     
    choice, Jul 12, 2009 IP
  3. elsjaakie

    elsjaakie Peon

    Messages:
    139
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    choice is right, noindex should block google from indexing those pages.
     
    elsjaakie, Jul 12, 2009 IP
  4. atniz

    atniz Well-Known Member

    Messages:
    1,661
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    115
    #4
    Nofollow and robot.txt is the best way to stop google from crawling links and pages. You are on the right track.
     
    atniz, Jul 12, 2009 IP
  5. PaulCpR

    PaulCpR Active Member

    Messages:
    192
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #5
    Yeap, if your robots.txt is written correctly.. the site in question sshouldn't get indexed. But to make sure I would add an htaccess and an .htpwd file to disallow search engine crawlers. Matt Cutts has a nice video about this topic too..
     
    PaulCpR, Jul 12, 2009 IP
  6. affiliates4seo

    affiliates4seo Peon

    Messages:
    248
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #6
    if you use a tag noindex, then search engines not index you.

    index, nofollow will index your page but not follow your links in the page

    index, follow will index and follow all of the links with in the page

    noindex, nofollow not indexes the page

    Using of robots.txt is the best way, rather than using of meta tag noindex in code.
     
    affiliates4seo, Jul 13, 2009 IP
  7. Wolf_hsac

    Wolf_hsac Banned

    Messages:
    31
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Use this html code at the top of each page you don't want to be indexed dude

    <html>
    <head>
    <title>...</title>
    <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
    </head>
    
    HTML:
     
    Wolf_hsac, Jul 13, 2009 IP
  8. Canonical

    Canonical Well-Known Member

    Messages:
    2,223
    Likes Received:
    141
    Best Answers:
    0
    Trophy Points:
    110
    #8

    The <meta name="robots" content="noindex"> element with prevent the page from being indexed no matter who links to it (you or other sites) or how many links it has.

    I would NOT add a Disallow: in your robots.txt. It's not necessary if you already have <meta name="robots" content="noindex"> in the <head> of the page and can sometimes lead to other undesirable side effects.

    Also I would use <meta name="robots" content="noindex"> or <meta name="robots" content="noindex,follow">. I would NOT use <meta name="robots" content="noindex,nofollow">.
     
    Canonical, Jul 13, 2009 IP