<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 301 Redirect Cheatsheet</title>
	<atom:link href="http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Thu, 16 May 2013 00:37:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jason</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1516</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 11 Jun 2012 00:47:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1516</guid>
		<description><![CDATA[Do you know how to successfully do this on an smf forum? I&#039;m not able to sign in when using this method.]]></description>
		<content:encoded><![CDATA[<p>Do you know how to successfully do this on an smf forum? I'm not able to sign in when using this method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abraham NooB</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1514</link>
		<dc:creator>Abraham NooB</dc:creator>
		<pubDate>Mon, 31 Oct 2011 01:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1514</guid>
		<description><![CDATA[Hi,

If I want to redirect all pages from my old website to the home page of my new website, would this be enough:
&lt;pre&gt;RedirectMatch 301 (.*) http://www.newdomain.com/&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>If I want to redirect all pages from my old website to the home page of my new website, would this be enough:</p>
<pre>RedirectMatch 301 (.*) http://www.newdomain.com/</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Big B.</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1512</link>
		<dc:creator>Big B.</dc:creator>
		<pubDate>Fri, 09 Jul 2010 09:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1512</guid>
		<description><![CDATA[Script &quot;Ultimate PHP method&quot; reported Parse error: syntax error, unexpected $end]]></description>
		<content:encoded><![CDATA[<p>Script "Ultimate PHP method" reported Parse error: syntax error, unexpected $end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefanos</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1511</link>
		<dc:creator>Stefanos</dc:creator>
		<pubDate>Thu, 24 Jun 2010 10:44:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1511</guid>
		<description><![CDATA[Great post! I found it really useful. Any idea if the header redirect is seo fiendly. Aa far as I know the best one is the .htaccess one. Any advice on this issue.]]></description>
		<content:encoded><![CDATA[<p>Great post! I found it really useful. Any idea if the header redirect is seo fiendly. Aa far as I know the best one is the .htaccess one. Any advice on this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: OneDame</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1510</link>
		<dc:creator>OneDame</dc:creator>
		<pubDate>Tue, 15 Jun 2010 13:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1510</guid>
		<description><![CDATA[Hey, thanks for this list. It really helped me out!]]></description>
		<content:encoded><![CDATA[<p>Hey, thanks for this list. It really helped me out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1509</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 08 May 2010 09:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1509</guid>
		<description><![CDATA[&lt;p&gt;Heya - the Python example actually would prompt a 302 redirect&lt;/p&gt;

&lt;p&gt;In order to prompt a 301, note that you would need to utilize the &lt;code&gt;HttpResponsePermanentRedirect&lt;/code&gt; class a la:&lt;/p&gt;

&lt;pre&gt;from django import http
def view(request):
return http.HttpResponsePermanentRedirect (&#039;http://www.askapache.com&#039;)&lt;/pre&gt;

&lt;p&gt;Reference: &lt;a href=&quot;http://docs.djangoproject.com/en/dev/ref/request-response/#httpresponse-subclasses&quot;&gt;httpresponse-subclasses&lt;/a&gt;&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Heya - the Python example actually would prompt a 302 redirect</p>
<p>In order to prompt a 301, note that you would need to utilize the <code>HttpResponsePermanentRedirect</code> class a la:</p>
<pre>from django import http
def view(request):
return http.HttpResponsePermanentRedirect ('http://www.askapache.com')</pre>
<p>Reference: <a href="http://docs.djangoproject.com/en/dev/ref/request-response/#httpresponse-subclasses">httpresponse-subclasses</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskApache</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1508</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Fri, 26 Mar 2010 06:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1508</guid>
		<description><![CDATA[@Luis

Apache loads every time anyway@... so using it]]></description>
		<content:encoded><![CDATA[<p>@Luis</p>
<p>Apache loads every time anyway@... so using it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mara Alexander</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1507</link>
		<dc:creator>Mara Alexander</dc:creator>
		<pubDate>Thu, 04 Mar 2010 00:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1507</guid>
		<description><![CDATA[The links under the &quot;Redirect Method&quot; section appear to have been meant to be anchor links, yet they all redirect to your main page (askapache.com). I&#039;m thinking the anchor tags on the page weren&#039;t done correctly.]]></description>
		<content:encoded><![CDATA[<p>The links under the "Redirect Method" section appear to have been meant to be anchor links, yet they all redirect to your main page (askapache.com). I'm thinking the anchor tags on the page weren't done correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1505</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Mon, 17 Aug 2009 20:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1505</guid>
		<description><![CDATA[Which would be the preferred redirect method: PHP  or Mod Rewrite ? Why?
I&#039;m just curious abut it.]]></description>
		<content:encoded><![CDATA[<p>Which would be the preferred redirect method: PHP  or Mod Rewrite ? Why?<br />
I'm just curious abut it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Natasha</title>
		<link>http://www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1502</link>
		<dc:creator>Natasha</dc:creator>
		<pubDate>Fri, 27 Mar 2009 17:04:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html#comment-1502</guid>
		<description><![CDATA[This is great information. Thanks a bunch]]></description>
		<content:encoded><![CDATA[<p>This is great information. Thanks a bunch</p>
]]></content:encoded>
	</item>
</channel>
</rss>
