<?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; URL</title>
	<atom:link href="http://www.bin-co.com/blog/tag/url/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>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>21</slash:comments>
		</item>
		<item>
		<title>URL Lister &#8211; My First Firefox Plugin</title>
		<link>http://www.bin-co.com/blog/2008/05/url-lister-my-first-firefox-plugin/</link>
		<comments>http://www.bin-co.com/blog/2008/05/url-lister-my-first-firefox-plugin/#comments</comments>
		<pubDate>Wed, 07 May 2008 18:03:52 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[lister]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tab]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/?p=106</guid>
		<description><![CDATA[
I just released my first firefox plugin &#8211; URL Lister. It shows the URLs of all the open tabs in a textarea so that they can be copied easily.
Download/Install
Install URL Lister
If you have installed it, consider rating it or reviewing it at Firefox plugins sandbox. Go to the public page for URL Lister and write [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bin-co.com/tools/firefox/extensions/urllister/url_lister_logo.png" alt="URL Lister Logo" class="intro" align="right" /></p>
<p class="intro">I just released my first firefox plugin &#8211; <a href="http://www.bin-co.com/tools/firefox/extensions/urllister/">URL Lister</a>. It <strong class="highlight">shows the URLs of all the open tabs in a textarea so that they can be copied</strong> easily.</p>
<h2>Download/Install</h2>
<p><a href="http://www.bin-co.com/tools/firefox/extensions/urllister/urllister.xpi">Install URL Lister</a></p>
<p>If you have installed it, consider <strong class="highlight">rating it or reviewing it at Firefox plugins sandbox</strong>. Go to the <a href="https://addons.mozilla.org/en-US/firefox/addon/7192">public page for URL Lister</a> and write a review for the application. <strong class="highlight">I need reviews to promote it to the main extensions page</strong> &#8211; sandbox plugins are for registered users only.</p>
<h2>Usage</h2>
<p>Lets say you have these four tabs open&#8230;</p>
<ul>
<li><a href="http://www.openjs.com/">OpenJS &#8211; JavaScript, Opened.</a></li>
<li><a href="http://www.bin-co.com/">Bin-Co</a></li>
<li><a href="http://lindesk.com/">LinDesk</a></li>
<li><a href="http://blog.binnyva.com/">BinnyVA</a></li>
</ul>
<p>Right click any tab and click on the &#8216;URL Lister&#8230;&#8217; to open up the main dialog. You can also use &#8216;Tools &gt; URL Lister&#8217;. You will find the URLs of all the open tabs there.</p>
<p><img src="http://www.bin-co.com/tools/firefox/extensions/urllister/url_lister_screenshot.png" alt="URL Lister Screenshot" /></p>
<p>There is a drop down menu at the bottom &#8211; it has these three options&#8230;</p>
<ul>
<li>Plain Text</li>
<li>HTML Anchors</li>
<li>Linked List</li>
</ul>
<h3>Open URLs</h3>
<p>If you have a list of URLs and want to open them all, all you have to do is copy those URLs into this dialog and press OK &#8211; this will open up all the given URLs.</p>
<h2>And my thanks goes to&#8230;</h2>
<p>URL Lister is sort of a response to <a href="http://www.mattcutts.com/blog/wanted-convert-firefox-tabs-to-links/">this post</a> by Matt Cutts. I want to thank him for the idea.</p>
<p>There is another plugin with a similar function &#8211; <a href="https://addons.mozilla.org/en-US/firefox/addon/2069">Tab URL Copier</a>. I lifted some code from that plugin when creating URL Lister. Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2008/05/url-lister-my-first-firefox-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Case Sensitivity in URLs</title>
		<link>http://www.bin-co.com/blog/2007/10/case-sensitivity-in-urls/</link>
		<comments>http://www.bin-co.com/blog/2007/10/case-sensitivity-in-urls/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 18:16:29 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Case]]></category>
		<category><![CDATA[Sensitive]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/2007/10/case-sensitivity-in-urls/</guid>
		<description><![CDATA[I am an open source guy - so naturally I prefer the flagship <abbr title="Open Source Software">OSS</abbr> software Apache to the proprietary Microsoft IIS. But there is one area where IIS does a better job than Apache - the case sensitivity of URLs.]]></description>
			<content:encoded><![CDATA[<p class="intro">I am an open source guy &#8211; so naturally I prefer the flagship <abbr title="Open Source Software">OSS</abbr> software Apache to the proprietary Microsoft IIS. But there is one area where IIS does a better job than Apache &#8211; the case sensitivity of URLs.</p>
<h2>Are URLs Case Sensitive?</h2>
<p>They should not be &#8211; but they sometimes are. Domain names are not case sensitive &#8211; for example <a href="http://www.apache.org/">http://www.apache.org/</a> and <a href="http://WWW.Apache.Org/">http://WWW.Apache.Org/</a> goes to the same location. But in the <abbr title="Linux/Apache/MySQL/PHP">LAMP</abbr> platform, the path is case sensitive&#8230;</p>
<ul>
<li><a href="http://www.apache.org/foundation/getinvolved.html">http://www.apache.org/foundation/getinvolved.html</a> is not</li>
<li><a href="http://www.apache.org/Foundation/GetInvolved.HTML">http://www.apache.org/Foundation/GetInvolved.HTML</a></li>
</ul>
<p>But in the case of Microsoft IIS server, this is not true &#8211; try&#8230;</p>
<ul>
<li><a href="http://www.microsoft.com/WindowsServer2003/IIS/Default.mspx">http://www.microsoft.com/WindowsServer2003/IIS/Default.mspx</a> is the same as</li>
<li><a href="http://www.microsoft.com/windowsserver2003/iis/default.mspx">http://www.microsoft.com/windowsserver2003/iis/default.mspx</a></li>
</ul>
<h2>Reason: Linux Filesystem is Case Sensitive</h2>
<p>The root cause of this is that the filesystem in the Linux OS is case sensitive &#8211; while FAT32/NTFS filesystems in Windows are not.</p>
<h2>Dynamic URLs</h2>
<p>Now Dynamic/friendly/clean URLs are appearing in many CMS tools. A good example for this is the &#8216;permalink structure&#8217; in WordPress. These dynamic URLs could be case sensitive or not &#8211; it depends on the software. In WordPress they are case insensitive. <a href="http://del.icio.us/">Del.icio.us</a> is also case insensitive. TinyURL is another service that uses case insensitive URLs. But it is possible for the tool to make the URLs case sensitive.</p>
<h2>From the SEO perspective</h2>
<p>If the search bot visits two urls say, example.com/MyWebPage/Index and example.com/mywebpage/index , will the bot index both page contents? If they are same, will one get the duplicate content penalty? Or will google just index the URL with lower case and ignore the other &#8211; remember, in Linux/Apache, both pages may have different content.</p>
<h2>Conclusion</h2>
<p>The <a href="http://www.ietf.org/rfc/rfc1738.txt">RFC for URL</a> says they must be case insensitive.</p>
<blockquote><p>For resiliency, programs interpreting URLs should treat upper case letters as equivalent to lower case in scheme names (e.g., allow &#8220;HTTP&#8221; as well as &#8220;http&#8221;).</p></blockquote>
<p>Apache must not use the filesystem as an excuse &#8211; I really hope they provide case insensitive URLs</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2007/10/case-sensitivity-in-urls/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
