Forum Moderators: Robert Charlton & goodroi
...as the parameter is not going to change the content or meaning of the content, just some of the values.
...or is there some other way of dealing with this irrelevant parameter issue as far as Google is concerned.
Eric Enge: Can a NoIndex page accumulate PageRank?
Matt Cutts: A NoIndex page can accumulate PageRank, because the links are still followed outwards from a NoIndex page.
Eric Enge: So, it can accumulate and pass PageRank.
Matt Cutts: Right, and it will still accumulate PageRank, but it won't be showing in our Index. So, I wouldn't make a NoIndex page that itself is a dead end. You can make a NoIndex page that has links to lots of other pages.
[stonetemple.com...]
example.com/this-page-could-have-parameters.php?var=on-this-one-it-really-does-so-noindexing-this-one-doesnt-hurt-a-bit-its-a-backup-so-if-Google-glitches-you-dont-have-to-worry-about-a-duplicate
page.php?a=1&b=2&c=3
ignore c
link to page.php?a=1&b=2&c=3
= exactly the same as link to page.php?a=1&b=2
noindexing when parameter c is included doesn't hurt a bit
There's a big difference between ignoring a parameter, and ignoring pages whose URL contains the parameter.
[edited by: TheOptimizationIdiot at 12:25 pm (utc) on Mar 6, 2013]
Nah, it's been tested quite a few times and noindex pages pass link weight.
Matt Cutts: Right, and it will still accumulate PageRank, but it won't be showing in our Index. So, I wouldn't make a NoIndex page that itself is a dead end. You can make a NoIndex page that has links to lots of other pages.
This is definitely an interesting question :-). Before the rel=canonical link element was announced, using noindex robots meta tags was one way that webmasters were directing us towards canonicals, so this is certainly something we know and understand. However, with the coming of the rel=canonical link element, the optimal way of specifying a canonical is (apart from using a 301 redirect to the preferred URL) is to only use the rel=canonical link element.
One reason for this is that we sometimes find a non-canonical URL first. If this URL has a noindex robots meta tag, we might decide not to index anything until we crawl and index the canonical URL. Without the noindex robots meta tag (with the rel=canonical link element) we can start by indexing that URL and show it to users in search results.
http://productforums.google.com/forum/#!topic/webmasters/0sqRrolO_Ss
When Google detects duplicate content, such as variations caused by URL parameters, we group the duplicate URLs into one cluster and select what we think is the "best" URL to represent the cluster in search results. We then consolidate properties of the URLs in the cluster, such as link popularity, to the representative URL. Consolidating properties from duplicates into one representative URL often provides users with more accurate search results.
To improve this process, we recommend using the parameter handling tool to give Google information about how to handle URLs containing specific parameters. We'll do our best to take this information into account; however, there may be cases when the provided suggestions may do more harm than good for a site.
[support.google.com...]
Some bits of w3schools are out of date, so do tread with caution.
www.w3schools.com/html/html_links.asp.
The name attribute specifies the name of an anchor. The name attribute is used to create a bookmark inside an HTML document.
This is misleading. Named anchors have been deprecated since HTML4 and replaced with element IDs. (Yes, that's right: you can link to any element with a href="#thing" as long as it has id="thing". Yes, it works everywhere.)
An anchor with an id inside an HTML document:
<a id="tips">Useful Tips Section</a>
Create a link to the "Useful Tips Section" inside the same document:
<a href="#tips">Visit the Useful Tips Section</a>
Or, create a link to the "Useful Tips Section" from another page:
<a href="http://www.w3schools.com/html_links.htm#tips">
Visit the Useful Tips Section</a>
[w3schools.com...]
http://www.w3schools.com/html/html_links.asp