<?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>About Web Development by Activo &#187; Canonical URL</title>
	<atom:link href="http://www.activoinc.com/blog/tag/canonical-url/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.activoinc.com/blog</link>
	<description>Web Development in a Web 2.0 World</description>
	<lastBuildDate>Fri, 29 Jan 2010 17:16:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Use Mod_Rewrite to Set a Canonical URL</title>
		<link>http://www.activoinc.com/blog/2008/10/31/how-to-use-mod_rewrite-to-set-a-canonical-url/</link>
		<comments>http://www.activoinc.com/blog/2008/10/31/how-to-use-mod_rewrite-to-set-a-canonical-url/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 11:21:04 +0000</pubDate>
		<dc:creator>Ron Peled</dc:creator>
				<category><![CDATA[Search Engine Optimization (SEO)]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Canonical URL]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[Search Engine Marketing (SEM)]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[website ranking]]></category>

		<guid isPermaLink="false">http://www.activoinc.com/blog/?p=128</guid>
		<description><![CDATA[The importance of the Canonical URL is well known in the SEO world. However, for most web developers and website owners is something that is often overlooked. The theory in short explains that search engines rank each page individually and typically penalize multiple pages with duplicate content. So, if a site does not have a [...]]]></description>
			<content:encoded><![CDATA[<p>The importance of the Canonical URL is well known in the SEO world. However, for most web developers and website owners is something that is often overlooked. The theory in short explains that search engines rank each page individually and typically penalize multiple pages with duplicate content. So, if a site does not have a mechanism that identifies a <strong>Canonical URL</strong>, (in other words, a unique URL for the main page), search engines may evaluate multiple links that result in the home page separately. As a result, your site may get penalized altogether or simply suffer from lower pagerank due to the fact that the pagerank is now shared among multiple pages. An example:</p>
<p>The home page of a site can be displayed with any one of the following URLs:</p>
<p>http://domainname.com</p>
<p>http://domainname.com/index.html</p>
<p>http://www.domainname.com</p>
<p>http://www.domainname.com/</p>
<p>etc.</p>
<p>To avoid the above, simply use <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html">apache&#8217;s mod_rewrite</a> and include the following code in an .htaccess file that should be located at the root folder of the web server (replace the domain name text with your real one):<code><br />
RewriteCond %{HTTP_HOST} !^www.domainname.com$ [NC]<br />
RewriteRule ^(.*)$ http://www.</code><code>domainname</code><code>.com/$1 [R=permanent,L]</code></p>
<p>Now, you&#8217;ll need to make sure that all your links that directs traffic to the home page use the chosen canonical url.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>June 8, 2008 -- <a href="http://www.activoinc.com/blog/2008/06/08/5-points-for-assessing-link-exchange-requests/" title="5 points for assessing link exchange requests">5 points for assessing link exchange requests</a> (0)</li><li>October 25, 2008 -- <a href="http://www.activoinc.com/blog/2008/10/25/how-to-use-the-footer-to-improve-seo-and-increase-traffic/" title="How to Use the Footer to Improve SEO and Increase Traffic">How to Use the Footer to Improve SEO and Increase Traffic</a> (2)</li><li>October 13, 2008 -- <a href="http://www.activoinc.com/blog/2008/10/13/5-peculiar-seo-tips-you-should-know-about/" title="5 Peculiar SEO Tips You Should Know About">5 Peculiar SEO Tips You Should Know About</a> (1)</li><li>September 21, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/21/3-steps-to-increase-your-website-traffic-with-popular-keywords/" title="3 Steps to Increase Your Website&#8217;s Traffic with Popular Keywords">3 Steps to Increase Your Website&#8217;s Traffic with Popular Keywords</a> (0)</li><li>September 7, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/07/seo-vs-ppc-is-seo-the-preference-these-days/" title="SEO vs PPC: is SEO the preference these days?">SEO vs PPC: is SEO the preference these days?</a> (1)</li><li>July 5, 2008 -- <a href="http://www.activoinc.com/blog/2008/07/05/flash-and-search-engine-optimization-seo/" title="Flash and Search Engine Optimization (SEO)">Flash and Search Engine Optimization (SEO)</a> (0)</li><li>July 16, 2009 -- <a href="http://www.activoinc.com/blog/2009/07/16/speed-optimized-websites-rank-higher-with-search-engines/" title="Speed Optimized Websites Rank Higher with Search Engines">Speed Optimized Websites Rank Higher with Search Engines</a> (0)</li><li>July 9, 2009 -- <a href="http://www.activoinc.com/blog/2009/07/09/take-a-look-at-dells-fortuna-server/" title="Take a Look at Dell&#8217;s Fortuna Server">Take a Look at Dell&#8217;s Fortuna Server</a> (0)</li><li>November 5, 2008 -- <a href="http://www.activoinc.com/blog/2008/11/05/understanding-mysql-query-caching/" title="Understanding MySQL Query Caching Process">Understanding MySQL Query Caching Process</a> (1)</li><li>September 28, 2008 -- <a href="http://www.activoinc.com/blog/2008/09/28/5-important-zen-cart-modules/" title="5 Important Zen Cart Modules">5 Important Zen Cart Modules</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.activoinc.com/blog/2008/10/31/how-to-use-mod_rewrite-to-set-a-canonical-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
