<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bin-Blog &#187; SEO</title>
	<atom:link href="http://www.bin-co.com/blog/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bin-co.com/blog</link>
	<description>Learn about the latest in Web Development - as soon as I do.</description>
	<lastBuildDate>Tue, 13 Oct 2009 18:55:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Avoid Duplicate Content &#8211; Use Canonical URL in WordPress</title>
		<link>http://www.bin-co.com/blog/2009/02/avoid-duplicate-content-use-canonical-url-in-wordpress-fix-plugin/</link>
		<comments>http://www.bin-co.com/blog/2009/02/avoid-duplicate-content-use-canonical-url-in-wordpress-fix-plugin/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 18:28:53 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[canonical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/?p=233</guid>
		<description><![CDATA[The new talk of the SEO world is '<a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">Canonical URL</a>'. What is canonical URL? This is the definition given in Google's Webmaster Central Blog...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bin-co.com/blog/wp-content/uploads/2008/10/wordpress_logo.png" alt="WordPress Logo" title="WordPress Logo" width="183" height="145" class="alignnone size-full wp-image-136 intro" align="right" /></p>
<p class="intro">The new talk of the SEO world is &#8216;<a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">Canonical URL</a>&#8216;. What is canonical URL? This is the definition given in Google&#8217;s Webmaster Central Blog&#8230;</p>
<blockquote><p>a format that allows you to <strong class="highlight">publicly specify your preferred version of a URL</strong>. If your site has identical or vastly similar content that&#8217;s accessible through multiple URLs, this format provides you with more control over the URL returned in search results. It also helps to make sure that properties such as link popularity are consolidated to your preferred version.</p>
<p>Emphasis mine</p>
</blockquote>
<p>It is very easy to specify the canonical URL of a page &#8211; all you have to do is <strong class="highlight">add this line in the head section</strong>&#8230;</p>
<pre><code class="html">&lt;link rel="canonical" href="http://binnyva.com/" /&gt;</code></pre>
<p>The purpose of this tag is to <a href="http://www.dailyseoblog.com/2009/02/duplicate-content-canonical-tag-to-your-rescue/">prevent the problem of duplicate content</a>.</p>
<p>The best thing about this tag is that all three major search engines(<a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">Google</a>, <a href="http://ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/">Yahoo</a> and <a href="http://blogs.msdn.com/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx">MS Live</a>) support this initiative.</p>
<h2>WordPress</h2>
<p>If you are on wordpress, this tag can be integrated into your theme easily. <a href="http://yoast.com/wordpress/canonical/">There is a plugin</a> to do the job for you &#8211; but you don&#8217;t need a plugin to do something as simple as this.</p>
<h3>header.php</h3>
<p>Go to the <strong class="highlight">theme folder</strong> in wordpress(wp-content/themes/&lt;theme_name&gt;) and <strong class="highlight">open the file <code>header.php</code></strong> in your favorite editor. Now <strong class="highlight">find the line</strong>&#8230;</p>
<pre><code class="html">&lt;/head&gt;</code></pre>
<p>and add the following code <strong class="highlight">before</strong> that line&#8230;</p>
<pre><code class="html">&lt;?php if ( is_singular() ) { ?&gt;
&lt;link rel="canonical" href="&lt;?php the_permalink(); ?&gt;" /&gt;
&lt;?php } ?&gt;</code></pre>
<p>Now, it should look something like this&#8230;</p>
<pre><code class="html">&lt;?php if ( is_singular() ) { ?&gt;
&lt;link rel="canonical" href="&lt;?php the_permalink(); ?&gt;" /&gt;
&lt;?php } ?&gt;
&lt;/head&gt;</code></pre>
<p>That&#8217;s it &#8211; you are done! <strong class="highlight">Save the file and upload it</strong> to your server.</p>
<p>This fix will add the canonical URL tag to all the posts and pages of your blog. If you want to see a blog that have implemented this fix, take a look at the source of this page.</p>
<h2>Related Links</h2>
<ul>
<li><a href="http://www.seobuzzbox.com/what-is-a-canonical-url/">Canonical URL</a></li>
<li><a href="http://mrjavo.com/what-is-a-canonical-url/">What Is A Canonical URL?</a></li>
<li><a href="http://ifacethoughts.net/2009/02/14/canonical-urls-to-avoid-duplicate-content/">Canonical URLs To Avoid Duplicate Content</a></li>
<li><a href="http://www.mattcutts.com/blog/canonical-link-tag/">Learn about the Canonical Link Element in 5 minutes</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2009/02/avoid-duplicate-content-use-canonical-url-in-wordpress-fix-plugin/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Using FeedBurner may hurt your PageRank!</title>
		<link>http://www.bin-co.com/blog/2007/05/using-feedburner-may-hurt-your-pagerank/</link>
		<comments>http://www.bin-co.com/blog/2007/05/using-feedburner-may-hurt-your-pagerank/#comments</comments>
		<pubDate>Thu, 10 May 2007 14:06:25 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/2007/05/using-feedburner-may-hurt-your-pagerank/</guid>
		<description><![CDATA[FeedBurner has a feature called &#8216;clickthrough tracking&#8217;. If a feed has this feature enabled, FeedBurner will track the number of clickthrough from your feed. You will be able to see how many users have come to your site after reading the feed. But there is a problem &#8211; they do the tracking by modifying the [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.bin-co.com/blog/2007/05/using-feedburner-may-hurt-your-pagerank/feedburner-logo/' rel='attachment wp-att-15' title='FeedBurner Logo'><img class="intro" align="right" src='http://www.bin-co.com/blog/wp-content/uploads/2007/05/feedburner.png' alt='FeedBurner Logo' /></a>
<p class="intro">FeedBurner has a feature called &#8216;clickthrough tracking&#8217;. If a feed has this feature enabled, <strong class="highlight">FeedBurner will track the number of clickthrough from your feed</strong>. You will be able to see how many users have come to your site after reading the feed. But there is a problem &#8211; they do the tracking by modifying the link URL &#8211; this <strong class="highlight">could hurt your Google PageRank</strong> in the long run.</p>
<p>The problem happens as <strong class="highlight">FeedBurner changes the URL in the feed</strong> to point to their site. It is not a FeedBurner issue &#8211; that is the only possible way to track clicks in a feed. This becomes an issue because <strong class="highlight">google will not credit these links to you</strong>.</p>
<p>For example, this is the URL of my last post&#8230;</p>
<p><a href="http://www.bin-co.com/blog/2007/05/jus5-light-weight-cms/">http://www.bin-co.com/blog/2007/05/jus5-light-weight-cms/</a></p>
<p>In the FeedBurner RSS feed, this link becomes</p>
<p><a href="http://feeds.feedburner.com/~r/bin-blog/~3/114722273/">http://feeds.feedburner.com/~r/bin-blog/~3/114722273/</a></p>
<p><strong class="highlight">Both points to the same location</strong> &#8211; but in case of the FeedBurner link, the user goes to the FeedBurner server and is <strong class="highlight">redirected from there to my site</strong>. This link is counted as a link to feedburner by google.</p>
<h2>How this Affect Google Page Rank</h2>
<p>This system is designed for humans &#8211; not for machines. But these <strong class="highlight">feeds are are harvested by bots and used on other sites</strong>. I have seen my content being swiped and used in other sites. Earlier I used to get angry about it &#8211; now that phase is over. I have accepted the situation. Like people accept spam and ads, after a while you learn to accept the fact that others are using your content without your permission.</p>
<p>There is one good thing about this &#8211; most people <strong class="highlight">link back to the the original page when using the content</strong>. And as all bloggers know, <a href="http://www.problogger.net/archives/2006/09/20/motivations-for-linkbaiting-why-links-are-good-for-your-blog/">links are very important</a>. Recently I found this page&#8230; </p>
<p><a href="http://www.fixmood.com/indian-college-students-face-bleak-prospects/2006/12/11/">http://www.fixmood.com/indian-college-students-face-bleak-prospects/2006/12/11/</a></p>
<p>This is an exact copy of <a href="http://blog.binnyva.com/2006/12/indian-college-students-face-bleak-prospects/">one of my blog post</a> over at <a href="http://blog.binnyva.com/">BinnyVA</a>.</p>
<p>Like many others, this site links to the original article &#8211; but to my horror, it uses the FeedBurner link&#8230;</p>
<p><code>Original post by &lt;em&gt;&lt;a href="<a href="http://feeds.feedburner.com/%7Er/BinnyvaBlog/%7E3/59866721/">http://feeds.feedburner.com/%7Er/BinnyvaBlog/%7E3/59866721/</a>" title="" onclick="javascript:urchinTracker('/outbound/feeds.feedburner.com');"&gt;BinnyVA&lt;/a&gt;&lt;/em&gt; ...</code></p>
<p>Google will not count this link as a link to my site. The only advantage of others using my content is lost.</p>
<p>Another problem is that <strong class="highlight">people copy the URL right from the feed reader into their blog</strong> &#8211; and if they are using a <abbr title="What You See Is What You Get">WYSIWYG</abbr> editor when creating the post, they will not notice that they used the wrong URL.</p>
<h2>Turn &#8216;Clickthrough Tracking&#8217; Off</h2>
<p>The <strong class="highlight">benefits of &#8216;clickthrough tracking&#8217; are not worth the problems</strong> caused by it. Fortunately, it is easy to turn it off. If you are not using FeedBurner to publish your feed, you don&#8217;t have this problem. Even if you are using FeedBurner, chances are that you don&#8217;t have the problem &#8211; you have to explicitly turn this option on. If you have turned it on here&#8217;s how to turn it off&#8230;</p>
<p>Login to the FeedBurner site and elect your feed. At the bottom left side of the Feed page, there will be a <strong class="highlight">link called &#8216;Standard Stats&#8217;</strong>.</p>
<p><img src='http://www.bin-co.com/blog/wp-content/uploads/2007/05/standard_stats_small.png' alt='FeedBurner Standard Stats' /></p>
<p>See the <strong class="highlight">checkbox &#8216;Item link clicks (clickthrough tracking)&#8217;</strong> &#8211; make sure its off.</p>
<p><img src='http://www.bin-co.com/blog/wp-content/uploads/2007/05/checkbox.png' alt='Disable Click Thru in FeedBurner' /></p>
<p>Click &#8216;Save&#8217;. Do this for all your feeds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2007/05/using-feedburner-may-hurt-your-pagerank/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

