<?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>&#60;title&#62; &#187; pagerank</title>
	<atom:link href="http://www.adammoro.com/blog/tag/pagerank/feed" rel="self" type="application/rss+xml" />
	<link>http://www.adammoro.com/blog</link>
	<description>Internet Marketing, Web Development and Programming Stuff</description>
	<lastBuildDate>Fri, 19 Nov 2010 19:58:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Fake Your Google PageRank</title>
		<link>http://www.adammoro.com/blog/fake-google-pagerank.html</link>
		<comments>http://www.adammoro.com/blog/fake-google-pagerank.html#comments</comments>
		<pubDate>Sun, 30 Aug 2009 17:27:26 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=10</guid>
		<description><![CDATA[Every SEO has seen the Dark SEO PR 10 page (which is banned and probably has been for a long time now) and regardless of whether they’ll admit it, have always wanted to give it a shot. Here’s the code: &#60;?php $agent = strtolower($_SERVER['HTTP_USER_AGENT']); if(strpos($agent, "google") != "") { header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.w3.org/"); ...]]></description>
			<content:encoded><![CDATA[<div id="post-105">
<div>
<p>Every SEO has seen the Dark SEO PR 10 page (which is banned and probably has been for a long time now) and regardless of whether they’ll admit it, have always wanted to give it a shot.</p>
<p>Here’s the code:</p>
<pre>&lt;?php
$agent = strtolower($_SERVER['HTTP_USER_AGENT']);
if(strpos($agent, "google") != "") {
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.w3.org/");
exit;
}
?&gt;</pre>
<p>Just place this at the top (important that it’s at the <strong>very top</strong>) of the page for which you want to fake PageRank. As you can see, I’m shooting for a 10 but you can obviously change the url (http://www.w3.org/) to get your desired PR.</p>
<p>If you're wondering how this can be used to boost organic placement, it can't. You would have to use something like this (and replace the link on line 2 with a link to a page you want to promote:</p>
<pre>&lt;?php ob_start(); ?&gt;
&lt;a href="http://www.php.net/"&gt;php is cool&lt;/a&gt;
&lt;?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.w3.org/“);
exit;
?&gt;
&lt;?php ob_end_flush(); ?&gt;</pre>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/fake-google-pagerank.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

