<?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>SEO News Tips and Tricks &#187; pagerank</title>
	<atom:link href="http://seotricks.inet-sec.net/tag/pagerank/feed/" rel="self" type="application/rss+xml" />
	<link>http://seotricks.inet-sec.net</link>
	<description>Search Engine Optimization Tactics</description>
	<lastBuildDate>Fri, 28 Nov 2008 05:53:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rich Content is golden</title>
		<link>http://seotricks.inet-sec.net/2008/11/12/rich-content-is-golden/</link>
		<comments>http://seotricks.inet-sec.net/2008/11/12/rich-content-is-golden/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 13:53:27 +0000</pubDate>
		<dc:creator>seo23</dc:creator>
				<category><![CDATA[Whitehat SEO]]></category>
		<category><![CDATA[backlinks]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[rank]]></category>
		<category><![CDATA[ranking]]></category>
		<category><![CDATA[semantics]]></category>

		<guid isPermaLink="false">http://seotricks.inet-sec.net/?p=37</guid>
		<description><![CDATA[While some people may argue that you can use any content as long as you throw enough backlinks at the site, it is better to have a good structured, content rich website with semantics. Put some thought behind deep linking/interlinking. Use the small tricks such as anchor or bold text. Write your content clever with [...]]]></description>
			<content:encoded><![CDATA[<p>While some people may argue that you can use <strong>any content</strong> as long as you throw enough backlinks at the site, it is better to have a good structured, <strong>content rich</strong> website with semantics. Put some thought behind deep linking/interlinking. Use the small tricks such as anchor or bold text. Write your content clever with use of semantics and write as much text as possible. Do not scrape <strong>content </strong>from other sites, unless for trackbacks maybe. Get some related pages that rank well for your keyword to link back to you. If a site that is already ranking high for your term and is linking back to you, thats always a good thing for the ranking of your own site &#8211; good neighborhood is nice <img src='http://seotricks.inet-sec.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Of course i can&#8217;t argue about the backlink issue, if you throw just enough backlinks to the site it most likely ranks well even without <strong>rich content</strong>. But the results are not always the same, so while you can push one site really high with that methode, other sites will ust go down.</p>
<p>For the long run your always better off (especially for whitehat sites) with <strong>rich content</strong> and some thought put behind your linking.</p>
]]></content:encoded>
			<wfw:commentRss>http://seotricks.inet-sec.net/2008/11/12/rich-content-is-golden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>302 or 301 Redirects ?</title>
		<link>http://seotricks.inet-sec.net/2008/11/12/302-or-301-redirects/</link>
		<comments>http://seotricks.inet-sec.net/2008/11/12/302-or-301-redirects/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 01:16:56 +0000</pubDate>
		<dc:creator>seo23</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Whitehat SEO]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[redirects]]></category>
		<category><![CDATA[seo-redirect]]></category>

		<guid isPermaLink="false">http://seotricks.inet-sec.net/?p=6</guid>
		<description><![CDATA[This is basicially very simple. The numbers reflect the HTTP response code where 301 tells a Robot such as the Google Spider that a site is permanently redirected and any juice such as PageRank should be forwarded to the new location. A 302 redirect however, is just a temporary redirect and tells a Search Engine [...]]]></description>
			<content:encoded><![CDATA[<p>This is basicially very simple. The numbers reflect the HTTP response code where 301 tells a Robot such as the Google Spider that a site is permanently redirected and any juice such as PageRank should be forwarded to the new location. A 302 redirect however, is just a temporary redirect and tells a Search Engine Spider simply that content has moved for now, but might move back to the old location anytime. So most of the time, you will want a 301 redirect <img src='http://seotricks.inet-sec.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>There are several ways to launch such a redirect either by java script, or any other popular Web Scripting language such as php,asp etc.</p>
<p>here is a small example javascript redirect:</p>
<p><strong>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
window.location.href=&#8217;http://domain.tld&#8217;;<br />
&lt;/script&gt;</strong></p>
<p>You can also redirect using Meta tags, but i wouldn&#8217;t reccomend it to you&#8230;</p>
<p>The safest way is probably the mod_rewrite which would be added to your .htaccess file like that:</p>
<p><strong>RewriteRule ^olddomain.tld/olddirectory/(.*)$ http://newdomain.tld/ [R=301,L]</strong></p>
<p>Now if you don&#8217;t use mod_rewrite then you can also do it like that:</p>
<p><strong><em>redirect 301 / http://www.olddomain.tld/</p>
<p>http://www.newdomain.tld/</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://seotricks.inet-sec.net/2008/11/12/302-or-301-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
