<?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 Game Plan &#124; Search Engine Optimization &#187; Definition</title>
	<atom:link href="http://seogameplan.com/seo-blog/category/definition/feed/" rel="self" type="application/rss+xml" />
	<link>http://seogameplan.com/seo-blog</link>
	<description>Search Engine Optimization, Social Media and Internet Marketing Strategies - get discovered online</description>
	<lastBuildDate>Wed, 07 Jan 2009 19:37:48 +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>Web 2.0 &#8211; Astonishing, isn’t it?</title>
		<link>http://seogameplan.com/seo-blog/web-20/</link>
		<comments>http://seogameplan.com/seo-blog/web-20/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 17:12:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Definition]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://www.seogameplan.com/web-20/</guid>
		<description><![CDATA[What is Web 2.0? Watch this video. It&#8217;s a cool way to see the evolution of the web and understand a bit more about Web 2.0.
 
“A piece of information is really defined only by what it’s related to, and how it’s related. There really is little else to meaning. The structure is everything. There are [...]]]></description>
			<content:encoded><![CDATA[<p>What is Web 2.0? Watch this video. It&#8217;s a cool way to see the evolution of the web and understand a bit more about Web 2.0.</p>
<p> <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/6gmP4nk0EOE&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/6gmP4nk0EOE&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>“A piece of information is really defined only by what it’s related to, and how it’s related. There really is little else to meaning. The structure is everything. There are billions of neurons in our brains, but what are neurons? Just cells. The brain has no knowledge until connections are made between neurons. All that we know, all that we are, comes from the way our neurons are connected.” &#8211; Tim Berners-Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://seogameplan.com/seo-blog/web-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 Redirect &#8211; How to create redirects</title>
		<link>http://seogameplan.com/seo-blog/how-to-create-redirects/</link>
		<comments>http://seogameplan.com/seo-blog/how-to-create-redirects/#comments</comments>
		<pubDate>Thu, 24 May 2007 03:11:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Definition]]></category>
		<category><![CDATA[Optimization]]></category>

		<guid isPermaLink="false">http://www.seogameplan.com/how-to-create-redirects/</guid>
		<description><![CDATA[301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It&#8217;s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it&#8217;s the safest option. The code &#8220;301&#8243; is interpreted as &#8220;moved permanently&#8221;.
Below [...]]]></description>
			<content:encoded><![CDATA[<p>301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It&#8217;s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it&#8217;s the safest option. The code &#8220;301&#8243; is interpreted as &#8220;moved permanently&#8221;.</p>
<p align="justify" class="defaultfont">Below are a Couple of methods to implement <strong>URL Redirection</strong></p>
<h2>IIS Redirect</h2>
<ul class="defaultfont">
<li>In internet services manager, right click on the file or folder you wish to redirect</li>
<li>Select the radio titled &#8220;a redirection to a URL&#8221;.</li>
<li>Enter the redirection page</li>
<li>Check &#8220;The exact url entered above&#8221; and the &#8220;A permanent redirection for this resource&#8221;</li>
<li>Click on &#8216;Apply&#8217;</li>
</ul>
<h2>ColdFusion Redirect</h2>
<p><font face="Verdana"><font class="defaultfont">&lt;.cfheader statuscode=&#8221;301&#8243; statustext=&#8221;Moved permanently&#8221;&gt;<br />
&lt;.cfheader name=&#8221;Location&#8221; value=&#8221;http://www.new-url.com&#8221;&gt; </font></font></p>
<h2>PHP Redirect</h2>
<p><font face="Verdana"><font class="defaultfont">&lt;?<br />
Header( &#8220;HTTP/1.1 301 Moved Permanently&#8221; );<br />
Header( &#8220;Location: http://www.new-url.com&#8221; );<br />
?&gt; </font></font></p>
<h2>ASP Redirect</h2>
<p><font face="Verdana"><font class="defaultfont">&lt;%@ Language=VBScript %&gt;<br />
&lt;%<br />
Response.Status=&#8221;301 Moved Permanently&#8221;;<br />
Response.AddHeader(&#8220;Location&#8221;,&#8221;http://www.new-url.com/&#8221;);<br />
%&gt; </font></font></p>
<h2>ASP .NET Redirect</h2>
<p><font face="Verdana"><font class="defaultfont">&lt;script runat=&#8221;server&#8221;&gt;<br />
private void Page_Load(object sender, System.EventArgs e)<br />
{<br />
Response.Status = &#8220;301 Moved Permanently&#8221;;<br />
Response.AddHeader(&#8220;Location&#8221;,&#8221;http://www.new-url.com&#8221;);<br />
}<br />
&lt;/script&gt; </font></font></p>
<h2>JSP (Java) Redirect</h2>
<p><font face="Verdana"><font class="defaultfont">&lt;%<br />
response.setStatus(301);<br />
response.setHeader( &#8220;Location&#8221;, &#8220;http://www.new-url.com/&#8221; );<br />
response.setHeader( &#8220;Connection&#8221;, &#8220;close&#8221; );<br />
%&gt; </font></font></p>
<h2>CGI PERL Redirect</h2>
<p><font face="Verdana"><font class="defaultfont">$q = new CGI;<br />
print $q-&gt;redirect(&#8220;http://www.new-url.com/&#8221;); </font></font></p>
<h2>Ruby on Rails Redirect</h2>
<p><font face="Verdana"><font class="defaultfont">def old_action<br />
headers["Status"] = &#8220;301 Moved Permanently&#8221;<br />
redirect_to &#8220;http://www.new-url.com/&#8221;<br />
end </font></font></p>
<h2>Redirect Old domain to New domain (<a href="http://www.seogameplan.com/wp-admin/post.php?action=edit&#038;post=15">htaccess redirect</a>)</h2>
<p align="justify" class="defaultfont">Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.<br />
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)</p>
<p align="justify" class="defaultfont">Options +FollowSymLinks<br />
RewriteEngine on<br />
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]</p>
<p align="justify" class="defaultfont">Please REPLACE www.newdomain.com in the above code with your actual domain name.</p>
<p align="justify" class="defaultfont">In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.</p>
<p align="justify" class="defaultfont"><strong>Note*</strong> This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.</p>
<h2>Redirect to www (<a href="http://www.seogameplan.com/wp-admin/post.php?action=edit&#038;post=15">htaccess redirect</a>)</h2>
<p align="justify" class="defaultfont">Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to www.domain.com<br />
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)</p>
<p align="justify" class="defaultfont">Options +FollowSymlinks<br />
RewriteEngine on<br />
rewritecond %{http_host} ^domain.com [nc]<br />
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]</p>
<p align="justify" class="defaultfont">Please REPLACE domain.com and www.newdomain.com with your actual domain name.</p>
<p align="justify" class="defaultfont"><strong>Note*</strong> This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.</p>
<h2>How to Redirect HTML</h2>
<p align="justify" class="defaultfont">Please refer to section titled &#8216;How to Redirect with htaccess&#8217;, if your site is hosted on a Linux Server and &#8216;IIS Redirect&#8217;, if your site is hosted on a Windows Server.</p>
]]></content:encoded>
			<wfw:commentRss>http://seogameplan.com/seo-blog/how-to-create-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is SEO?</title>
		<link>http://seogameplan.com/seo-blog/what-is-seo/</link>
		<comments>http://seogameplan.com/seo-blog/what-is-seo/#comments</comments>
		<pubDate>Wed, 23 May 2007 15:52:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Definition]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[What is SEO]]></category>

		<guid isPermaLink="false">http://www.seogameplan.com/what-is-seo/</guid>
		<description><![CDATA[SEO (Search Engine Optimization) is the active practice of optimizing a website in order to increase user traffic the site receives from search engines.
]]></description>
			<content:encoded><![CDATA[<p>SEO (Search Engine Optimization) is the active practice of optimizing a website in order to increase user traffic the site receives from search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://seogameplan.com/seo-blog/what-is-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

