Does Canonical Tag passes link juice to the original URL?
-
We are using Canonical tags at almost all the pages of our eCommerce website. We have various sorting options like "High to Low", "Best Sellers", etc., due to this page URLs get change with some dynamic URL parameters. To avoid duplicity, we are using canonical tag on each page which point to the original url.
Also, we are using IBM Coremetrics to track traffic and conversions, but to measure referral traffic in Coremetrics, we have to add tracking parameters in the URL. So, while link building we need to share URLs with Coremetrics tracking parameters in the URL, but the canonical of this page is pointing to the original URL.
Suppose we have a Page that needs to be shared with Coremetrics tag: domain.com/category-name/?cm_mmc=Referral_-xyz--izUPF8VmRng--3
This Page has the canonical tag pointing to the original url: domain.com/category-name/
My question is if the URL: domain.com/category-name?cm_mmc=Referral_-xyz--izUPF8VmRng--3 got shared on other websites, will it pass link juice to the original URL: domain.com/category-name.
-
Can't use a canonical tag if the canonicalized page doesn't resemble the page I want to send link juice to? Why not?
-
Hey there,
The short answer is Yes.
However, if the pages are not alike, the tag shouldn't be used then. But anyway, it's not the case here.
Cheers, Martin
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
How do I easily no-follow my affiliate links?
Hi, I am in the process of setting up an affiliate marketing campaign for my site. I have done a bit of research and understand that it is safest in terms of SEO to add no-follow to the links from the affiliate sites. What is the easiest and simplest way to implement this?
Affiliate Marketing | | whiteonlySEO2 -
Links from Blogs and Forums
Hello Everyone, We are a small, local business in a city in Canada. We just got a new website and I am responsible for basically all of it, including the SEO. I was researching the back-links from our top-ranking competitor (another small, local business in our city). Here is their ranking: PA 40, with 441 Links from 111 RDs DA 30, with 6,864 Links from 116 RDs Here is the second-highest guy: PA 29, with 101 Links from 10 RDs DA 15, with 1,682 Links from 11 RDs As you can see, the top-ranking competitor's PA & DA are just about double his closest competitor. (Don't ask where we currently stand!) But, on closer examination, most of the links from our top-ranking competitor come from a local blog, where our competitor's ad appears in an advertisement on the sidebar. Each time they make a post, which is just about every day, our competitor gets a link. They also have a lot of links from a forum on a rock band's website. The original post was something about finding music, but the responses all have links to unrelated websites. This seems really, really slimy to me. What's going on?
Affiliate Marketing | | StillLearning0 -
'legitimate' link wheels
I was wondering what SEOMoz' thoughts are on the mega legitimate link wheel sites that are out there. TechMediaNet have been buying up massive news/media sites which arent really monetised (adsense) like http://www.space.com/ http://www.ouramazingplanet.com/ livescience.com and others and generating, admittedly good quality, curated content. Then seeding them with content with backlinks to their money site, toptenreviews.com which in essence is a review site with thousands of pages loaded with affiliate links no better than any of the other site out there. e.g. http://www.livescience.com/9755-bing.html due to the scale of what they're doing pretty much any keyword search i do with review in it (the last thing i wanted to purchase was a usb 3 hub) ends up with toptenreviews.com dominating the serps presumably due to the high PR the viral nature of the media sites are working with. Do you think Google will crack down on this, or do you think it's capitalism in action? TechMediaNet have invested millions in this project and just gotten another $33 million in funding recently.....
Affiliate Marketing | | idimmu0 -
Which affiliate programs pass the best SEO value through their links?
How good is Google at detecting the affiliate nature of those links? How does this rate as a linkbuilding strategy?
Affiliate Marketing | | menachemp0 -
Outbound Affiliate Links - Positive or Negative Effect
Hello I would like to increase the value of my value proposition to users by adding complimentor affiliate links and embedded widgets like postcode search to my promote my affiliate's service. I already have a great ranking.... Am I jeopardizing my position by putting outbound links to affiliate sites? Also would a nofollow tag on an affiliate link work? I understand Google is fast changing - so what is the latest advice on this for Spring 2011? Thanks a lot
Affiliate Marketing | | philipjterry0 -
Passing link juice via aff links?
Hi All, I know there was a recent post on this subject but I'm wondering if someone could take a look at these links and tell me if there is any SEO value in them at all and if not, what would be a way to improve them that might not be too much trouble for the affiliate? This URL: http://www.premiermodelskin.com/the-products/blemish-treatment has a Purchase button that passes product data (price, quantity, etc) directly to the basket of the host site (the site we want SEO benefit to). Using a form method to this URL: <form method="GET" action="<strong>http://www.monushop.co.uk/products/premier/blemish-treatment.html</strong>"> Qty <select id="add" name="add"> <option value="1" selected="selected">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> <option value="8">8</option> <option value="9">9</option> <option value="10">10</option> </select> 15ml £16.25 </form> My question is, does G see that form GET action as a followable link? If not what would be a better method? Any feedback much appreciated.
Affiliate Marketing | | lovealbatross
Cheers
J0 -
Passing Google Analytics Variables Through Javascript?
Alright so here's my situation and hopefully someone can help... I want to be able to pass Google Analytics variables onto my affiliate links so I have some better conversion tracking data (not PPC traffic so no easy dynamic keyword insertion variables). I want to do something like this: User searches "keyword" in Google > User lands on mysite.com > search data is assigned to global variables that I can use in my affiliate link redirect script. afflink.com/?id=123&keyword=[GA keyword variable] Anybody know how I would go about doing that? I've seen other Non-GA tracking scripts do this but I can't figure it out here and it's driving me crazy! Thanks,
Affiliate Marketing | | drewhammond
Drew EDIT: Just figured it out after a lot of guess and testing... I'm not sure if the way I'm doing it is the fastest, most optimized way but it works. Solution: I can pull the GA cookie and break it down to retrieve the keyword using PHP. For anyone searching for this in the future, here's how I did it: $gacookie = $_COOKIE['__utmz'];
$keyword = substr(strstr($gacookie, 'utmctr='),7); ?> Then I can use the $keyword variable wherever I need it. I haven't actually tested this on a live site yet but everything is working fine as of right now. If anyone has a better solution please feel free to answer.0