<?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>Internet Marketing Strategy &#187; pagerank</title>
	<atom:link href="http://daftseo.com/category/pagerank/feed/" rel="self" type="application/rss+xml" />
	<link>http://daftseo.com</link>
	<description>Tried &#38; tested internet promotion &#38; marketing techniques for all web pros.</description>
	<lastBuildDate>Tue, 16 Aug 2011 08:03:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>False Statistics</title>
		<link>http://daftseo.com/false-statistics/</link>
		<comments>http://daftseo.com/false-statistics/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 18:39:51 +0000</pubDate>
		<dc:creator>TYPELiFE</dc:creator>
				<category><![CDATA[analytics]]></category>
		<category><![CDATA[pagerank]]></category>

		<guid isPermaLink="false">http://daftseo.com/false-statistics/</guid>
		<description><![CDATA[For some reason, searchstatus (the most useful firefox plugin, ever.) is displaying faux-pagerank for my page. It&#8217;s stating that DaftSEO has a PageRank of four, when an external PageRank engine spits out a result of PR0. What&#8217;s going on? Is Search Status displaying the fake Page Rank for you too?]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdaftseo.com%2Ffalse-statistics%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdaftseo.com%2Ffalse-statistics%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>For some reason, searchstatus (the most useful firefox plugin, ever.) is displaying faux-pagerank for my page.</p>
<p>It&#8217;s stating that DaftSEO has a PageRank of four, when an external PageRank engine spits out a result of PR0.</p>
<p>What&#8217;s going on? Is Search Status displaying the fake Page Rank for you too?</p>
]]></content:encoded>
			<wfw:commentRss>http://daftseo.com/false-statistics/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TIP: Force &quot;www&quot; in URL with .htaccess</title>
		<link>http://daftseo.com/tip-force-www-in-url-with-htaccess/</link>
		<comments>http://daftseo.com/tip-force-www-in-url-with-htaccess/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 10:27:00 +0000</pubDate>
		<dc:creator>TYPELiFE</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Aesthetic Appearance]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Consistency]]></category>
		<category><![CDATA[Domain]]></category>
		<category><![CDATA[Functionality]]></category>
		<category><![CDATA[Gateway]]></category>
		<category><![CDATA[Host Www]]></category>
		<category><![CDATA[Htaccess]]></category>
		<category><![CDATA[Public Html Directory]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Snippet]]></category>
		<category><![CDATA[Suggestion]]></category>
		<category><![CDATA[Url]]></category>

		<guid isPermaLink="false">http://daftseo.com/?p=26</guid>
		<description><![CDATA[This neat little trick will force all browsers that are trying to access your website from domain.com into a standardized gateway of www.domain.com for increased search engine consistency, as well as a consistent aesthetic appearance to regular users. Add the following snippet of code to the .htaccess of your public html directory where you would [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdaftseo.com%2Ftip-force-www-in-url-with-htaccess%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdaftseo.com%2Ftip-force-www-in-url-with-htaccess%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This neat little trick will force all browsers that are trying to access your website from domain.com into a standardized gateway of www.domain.com for increased search engine consistency, as well as a consistent aesthetic appearance to regular users.</p>
<p>Add the following snippet of code to the .htaccess of your public html directory where you would like to use this.</p>
<p><code>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} !^www\.<br />
RewriteCond %{HTTP_HOST} !^([^\.]+)\.your-website\.com<br />
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]</code></p>
<p><span style="font-weight: bold; font-color: #ff0000;">Updated .htaccess to allow subdomains at the suggestion of Jim, <a href="http://www.theblogaholic.com/">The Blogaholic</a>. If you don&#8217;t want this functionality, just remove the third line!</span></p>
<p>Voila, 301 forwarded to the same homepage every time!</p>
<p>(BTW, this also prevents having such a varying pagerank between domain.com and www.domain.com some of the time.)</p>
]]></content:encoded>
			<wfw:commentRss>http://daftseo.com/tip-force-www-in-url-with-htaccess/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Page Rank Update</title>
		<link>http://daftseo.com/google-page-rank-update/</link>
		<comments>http://daftseo.com/google-page-rank-update/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 00:11:00 +0000</pubDate>
		<dc:creator>TYPELiFE</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[pagerank]]></category>

		<guid isPermaLink="false">http://daftseo.com/?p=16</guid>
		<description><![CDATA[Many of you probably have heard about the update through the gaggly school-girl type buzz that has been going around the grapevine yesterday of the PR update. Just reporting in myself to state that TYPELiFE lost its PR, probably due to my laziness throughout the summer. ( Won&#8217;t be happening again, I swear! ) Other [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdaftseo.com%2Fgoogle-page-rank-update%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdaftseo.com%2Fgoogle-page-rank-update%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Many of you probably have heard about the update through the gaggly school-girl type buzz that has been going around the grapevine yesterday of the PR update.</p>
<p>Just reporting in myself to state that TYPELiFE lost its PR, probably due to my laziness throughout the summer. ( Won&#8217;t be happening again, I swear! )</p>
<p>Other sites that received PR penalizations were directories and link lists.</p>
]]></content:encoded>
			<wfw:commentRss>http://daftseo.com/google-page-rank-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

