<?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: A Short Case Study on Redirects: 301s vs. 302s</title>
	<atom:link href="http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/</link>
	<description>by Vanessa Fox</description>
	<lastBuildDate>Wed, 14 Oct 2009 20:07:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: g1smd</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4148</link>
		<dc:creator>g1smd</dc:creator>
		<pubDate>Sun, 11 Jan 2009 01:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4148</guid>
		<description>There&#039;s a lot of non-obvious black art with this stuff, especially in deciding when to start- and end-anchor stuff, and exactly what format to use for patterns for matching wildcards. 


Two rules of thumb: 

1.  &quot;Just because it appears to work for the test URL, doesn&#039;t mean it will work the way you want it to work for all the different URL formats that will be thrown at it in real life&quot;.

2. &quot;Error 500? - Only 499 to go&quot;. (with thanks to jdMorgan at WebmasterWorld, for that one).




:-)</description>
		<content:encoded><![CDATA[<p>There&#8217;s a lot of non-obvious black art with this stuff, especially in deciding when to start- and end-anchor stuff, and exactly what format to use for patterns for matching wildcards. </p>
<p>Two rules of thumb: </p>
<p>1.  &#8220;Just because it appears to work for the test URL, doesn&#8217;t mean it will work the way you want it to work for all the different URL formats that will be thrown at it in real life&#8221;.</p>
<p>2. &#8220;Error 500? &#8211; Only 499 to go&#8221;. (with thanks to jdMorgan at WebmasterWorld, for that one).</p>
<p> <img src='http://www.ninebyblue.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vanessa</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4147</link>
		<dc:creator>Vanessa</dc:creator>
		<pubDate>Sat, 10 Jan 2009 20:20:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4147</guid>
		<description>g1smd, well part of the reason I&#039;m doing it this way (or so many different ways) is to experiment and get real-life examples of what happens, since I think a lot of people move their sites in random ways like this. But also, I am not an .htaccess expert so your info is exactly what I&#039;m looking to learn more about!

And I definitely always recommend that the number of hops in a redirect be minimized. But it&#039;s a good experiment to see if your theory on PageRank not transferring with more than one holds true. :)</description>
		<content:encoded><![CDATA[<p>g1smd, well part of the reason I&#8217;m doing it this way (or so many different ways) is to experiment and get real-life examples of what happens, since I think a lot of people move their sites in random ways like this. But also, I am not an .htaccess expert so your info is exactly what I&#8217;m looking to learn more about!</p>
<p>And I definitely always recommend that the number of hops in a redirect be minimized. But it&#8217;s a good experiment to see if your theory on PageRank not transferring with more than one holds true. <img src='http://www.ninebyblue.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: g1smd</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4146</link>
		<dc:creator>g1smd</dc:creator>
		<pubDate>Sat, 10 Jan 2009 20:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4146</guid>
		<description>***  I was redirecting at several levels. From the .htaccess file of the old site, I was doing a site-wide redirect. From the .htaccess file of the new site, I was redirecting from the old URL pattern to the new one (and from the non-www version to the www version). Wordpress itself was also redirecting, for instance, from the version of the URL without the slash to the version with it.   ***

For some URL request formats it looks like the browser might hit a Redirection Chain of up to four steps.  This can be quite dangerous.  PageRank isn&#039;t passed through anything more than a single-step redirect.

It is best to craft the rules so that the most specific rules are listed first and they also fix all the other problems (for that URL) that the later rules also fix.  That will mean that for any URL request, the target URL will be reached in just one hop.


***  Within .htaccess, some redirects use RedirectMatch, others use Redirect, and others are really URL rewrites using mod_rewrite.  ***

If directives from Mod_Alias and Mod_Rewrite are included within the same .htaccess file, then you cannot guarantee the order that they will be processed.   The processing order is the reverse of the order of module loading, as defined in the httpd.conf file. In some cases the server will do the internal rewrite first (so updating the internal path reference), and then a redirect will kick in and &quot;expose&quot; that internal filepath to the outside world in a new URL.  That action can be a site killer.

If you need a mix of redirects and rewrites, it is best to use Mod_Rewrite for all of them.  Make sure that you list the redirects first  (in order, from most specific to most general), and the rewrites last (in order, from most specific to most general). In this way, there will be just one redirect acted on, and one rewrite if needed, for each URL requested.</description>
		<content:encoded><![CDATA[<p>***  I was redirecting at several levels. From the .htaccess file of the old site, I was doing a site-wide redirect. From the .htaccess file of the new site, I was redirecting from the old URL pattern to the new one (and from the non-www version to the www version). Wordpress itself was also redirecting, for instance, from the version of the URL without the slash to the version with it.   ***</p>
<p>For some URL request formats it looks like the browser might hit a Redirection Chain of up to four steps.  This can be quite dangerous.  PageRank isn&#8217;t passed through anything more than a single-step redirect.</p>
<p>It is best to craft the rules so that the most specific rules are listed first and they also fix all the other problems (for that URL) that the later rules also fix.  That will mean that for any URL request, the target URL will be reached in just one hop.</p>
<p>***  Within .htaccess, some redirects use RedirectMatch, others use Redirect, and others are really URL rewrites using mod_rewrite.  ***</p>
<p>If directives from Mod_Alias and Mod_Rewrite are included within the same .htaccess file, then you cannot guarantee the order that they will be processed.   The processing order is the reverse of the order of module loading, as defined in the httpd.conf file. In some cases the server will do the internal rewrite first (so updating the internal path reference), and then a redirect will kick in and &#8220;expose&#8221; that internal filepath to the outside world in a new URL.  That action can be a site killer.</p>
<p>If you need a mix of redirects and rewrites, it is best to use Mod_Rewrite for all of them.  Make sure that you list the redirects first  (in order, from most specific to most general), and the rewrites last (in order, from most specific to most general). In this way, there will be just one redirect acted on, and one rewrite if needed, for each URL requested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#8216;Overheard on Twitter&#8217; Friday</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4133</link>
		<dc:creator>&#8216;Overheard on Twitter&#8217; Friday</dc:creator>
		<pubDate>Fri, 09 Jan 2009 19:12:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4133</guid>
		<description>[...] of Vanessa, she provided us with a nice illustration of a 302 vs. 301 and what not to do in social media. Poor Yelp. I like [...]</description>
		<content:encoded><![CDATA[<p>[...] of Vanessa, she provided us with a nice illustration of a 302 vs. 301 and what not to do in social media. Poor Yelp. I like [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan bleiweiss</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4125</link>
		<dc:creator>Alan bleiweiss</dc:creator>
		<pubDate>Thu, 08 Jan 2009 22:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4125</guid>
		<description>Vanessa, I was going to send you a cookie but before I do, I need to know, do you accept 3rd party cookies or do I have to make it myself?  

I&#039;d hate to go out and buy some fancy vampire cookie (http://bakingbites.com/2008/10/vampire-cookies/)  and send it to you only to have it rejected because you&#039;ve set your privacy settings to reject 3rd party cookies. 

So if it turns out that I have to make it myself, let me know... 

On another note, kudos for the CNN snippet (though personally I thought they ranted way too much, didn&#039;t include more from you and clearly CNN would have had a much higher unique visitor count today had they mentioned your name in the article headline...</description>
		<content:encoded><![CDATA[<p>Vanessa, I was going to send you a cookie but before I do, I need to know, do you accept 3rd party cookies or do I have to make it myself?  </p>
<p>I&#8217;d hate to go out and buy some fancy vampire cookie (<a href="http://bakingbites.com/2008/10/vampire-cookies/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/bakingbites.com/2008/10/vampire-cookies/?referer=');">http://bakingbites.com/2008/10/vampire-cookies/</a>)  and send it to you only to have it rejected because you&#8217;ve set your privacy settings to reject 3rd party cookies. </p>
<p>So if it turns out that I have to make it myself, let me know&#8230; </p>
<p>On another note, kudos for the CNN snippet (though personally I thought they ranted way too much, didn&#8217;t include more from you and clearly CNN would have had a much higher unique visitor count today had they mentioned your name in the article headline&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4122</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Thu, 08 Jan 2009 20:57:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4122</guid>
		<description>Hi Vanessa, 
may I suggest my &lt;a href=&quot;http://sebastians-pamphlets.com/the-anatomy-of-http-redirects-301-302-307/&quot; rel=&quot;nofollow&quot;&gt;book on redirects&lt;/a&gt; for addition to your ressource section above? It&#039;s a bit technical, but comprehensive.
Thanks and have a great new year!
Sebastian</description>
		<content:encoded><![CDATA[<p>Hi Vanessa,<br />
may I suggest my <a href="http://sebastians-pamphlets.com/the-anatomy-of-http-redirects-301-302-307/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/sebastians-pamphlets.com/the-anatomy-of-http-redirects-301-302-307/?referer=');">book on redirects</a> for addition to your ressource section above? It&#8217;s a bit technical, but comprehensive.<br />
Thanks and have a great new year!<br />
Sebastian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MS Share Point</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4116</link>
		<dc:creator>MS Share Point</dc:creator>
		<pubDate>Thu, 08 Jan 2009 11:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4116</guid>
		<description>I was very confused about 301 and 302 redirection. Now things seems to be very clear. I hope you will keep on making such good articles which are useful to me.. :)
That was nice.. thanks..</description>
		<content:encoded><![CDATA[<p>I was very confused about 301 and 302 redirection. Now things seems to be very clear. I hope you will keep on making such good articles which are useful to me.. <img src='http://www.ninebyblue.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
That was nice.. thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colleen</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4112</link>
		<dc:creator>Colleen</dc:creator>
		<pubDate>Wed, 07 Jan 2009 16:52:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4112</guid>
		<description>When you say &quot;search engines,&quot; have you included Yahoo within your analysis?  For my client&#039;s site, the 302 redirect in Yahoo does not function the same way it does in Google.  In fact, Yahoo never picked up the new site.  Thoughts?</description>
		<content:encoded><![CDATA[<p>When you say &#8220;search engines,&#8221; have you included Yahoo within your analysis?  For my client&#8217;s site, the 302 redirect in Yahoo does not function the same way it does in Google.  In fact, Yahoo never picked up the new site.  Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arjun</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4110</link>
		<dc:creator>Arjun</dc:creator>
		<pubDate>Wed, 07 Jan 2009 11:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4110</guid>
		<description>Vanessa,

I have a blog with 100 posts. Now I would like to move the entire content to new url like what you did. In those 100 posts few posts are ranked well in search engines. If I would apply simply the 301 redirect to all my posts then &quot;Does the search engine rankings will remain the same?&quot;. It means &quot;Does the old post url will replace by the new url in the search engine results with the same position?&quot;. 

If your answer is yes. I am happy.

If your answer is no then please let me know what else needs to be done to get those positions with the new url.

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Vanessa,</p>
<p>I have a blog with 100 posts. Now I would like to move the entire content to new url like what you did. In those 100 posts few posts are ranked well in search engines. If I would apply simply the 301 redirect to all my posts then &#8220;Does the search engine rankings will remain the same?&#8221;. It means &#8220;Does the old post url will replace by the new url in the search engine results with the same position?&#8221;. </p>
<p>If your answer is yes. I am happy.</p>
<p>If your answer is no then please let me know what else needs to be done to get those positions with the new url.</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Affan Laghari</title>
		<link>http://www.ninebyblue.com/blog/a-short-case-study-on-redirects-301s-vs-302s/comment-page-1/#comment-4109</link>
		<dc:creator>Affan Laghari</dc:creator>
		<pubDate>Wed, 07 Jan 2009 09:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ninebyblue.com/?p=628#comment-4109</guid>
		<description>Sorry I missed the screenshots first having turned images off. But the algos figuring out comment had something b/w the lines though I probably made it too serious!

Anyway, since you mentioned you are writing more notes on redirection options, I would be grateful if you can touch on the following in any future post:

1) Does it affect a site&#039;s credibility or the organic rankings in anyway if there are too many redirects. Like I guess you have redirected all blog posts on the old domain to this new one. So though it may take time to bring the rankings back, but do you think all these redirects have any combined negative effect just because you redirect too many pages.

2) If there&#039;s a new large site that doesn&#039;t have any backlinks and no visitors yet, and they decide to either change the domain or want to optimize and rewrite URLs; would it be better for them to 301 redirect all previous pages to new ones (large site may mean 500+ pages), or should they skip the redirect and just put the pages on the new domain/URL since they don&#039;t have any links or traffic yet? 

Thanks for your time.</description>
		<content:encoded><![CDATA[<p>Sorry I missed the screenshots first having turned images off. But the algos figuring out comment had something b/w the lines though I probably made it too serious!</p>
<p>Anyway, since you mentioned you are writing more notes on redirection options, I would be grateful if you can touch on the following in any future post:</p>
<p>1) Does it affect a site&#8217;s credibility or the organic rankings in anyway if there are too many redirects. Like I guess you have redirected all blog posts on the old domain to this new one. So though it may take time to bring the rankings back, but do you think all these redirects have any combined negative effect just because you redirect too many pages.</p>
<p>2) If there&#8217;s a new large site that doesn&#8217;t have any backlinks and no visitors yet, and they decide to either change the domain or want to optimize and rewrite URLs; would it be better for them to 301 redirect all previous pages to new ones (large site may mean 500+ pages), or should they skip the redirect and just put the pages on the new domain/URL since they don&#8217;t have any links or traffic yet? </p>
<p>Thanks for your time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
