<?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>PHP Tutorials Code Snippets and Php Tips &#187; php moved permanently</title>
	<atom:link href="http://readytousesolutions.com/phpblog/tag/php-moved-permanently/feed/" rel="self" type="application/rss+xml" />
	<link>http://readytousesolutions.com/phpblog</link>
	<description>PHP tutorials - Examples of the most useful scripts</description>
	<lastBuildDate>Thu, 23 Sep 2010 06:54:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP Tutorial : 301 Redirect Permanently Moved</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-301-redirect-permanently-moved/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-301-redirect-permanently-moved/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 19:52:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basic PHP]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[301 redirect]]></category>
		<category><![CDATA[moved permanently]]></category>
		<category><![CDATA[php 301]]></category>
		<category><![CDATA[php 301 redirect]]></category>
		<category><![CDATA[php moved permanently]]></category>
		<category><![CDATA[php redirect]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=63</guid>
		<description><![CDATA[Ever Moved a page to a new one and searched for a way to let your users and search engines spiders / robots to let they know that you moved that page permanently? There are a lot of ways to &#8230; <a href="http://readytousesolutions.com/phpblog/php-tutorial-301-redirect-permanently-moved/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ever Moved a page to a new one and searched for a way to let your users and search engines spiders / robots to let they know that you moved that page permanently? There are a lot of ways to do it, but with php is so simple. Just two lines of code. Here is the code:</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="htmlText">
Header</span><span class="phpOperator">(</span> <span class="phpString">"HTTP/<span class="phpNumber">1</span><span class="phpOperator">.</span><span class="phpNumber">1</span> 301 Moved Permanently"</span> <span class="phpOperator">)</span><span class="phpText">;</span>
<span class="htmlText">
Header</span><span class="phpOperator">(</span> <span class="phpString">"Location<span class="phpOperator">:</span><span class="htmlText"> the</span><span class="phpKeyword">-new-</span>page.html"</span> <span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-301-redirect-permanently-moved/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

