<?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>OneWord &#187; redirecionamento</title>
	<atom:link href="http://www.onebit.com.br/blog/category/redirecionamento/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onebit.com.br/blog</link>
	<description>Mais que uma palavra, pensamentos sobre Web</description>
	<lastBuildDate>Sat, 31 Jul 2010 14:35:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>Como fazer um redirecionamento &#8220;301 permanent redirect&#8221;</title>
		<link>http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/</link>
		<comments>http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/#comments</comments>
		<pubDate>Wed, 06 May 2009 03:24:41 +0000</pubDate>
		<dc:creator>André</dc:creator>
				<category><![CDATA[redirecionamento]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[permanent]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.onebit.com.br/blog/?p=91</guid>
		<description><![CDATA[O 301 redirect é o metodo mais eficiente e considerado Search Engine Friendly (Amigável para mecanismos de busca) para redirecionamento de sites. A implementação não é complicada e preserva seu rankins em sites de busca. Caso você mude nomes de arquivos ou apague o erro 301 aparece, informando aos sites de busca que foi “Movido [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">O 301 redirect é o metodo mais eficiente e considerado <strong>Search Engine Friendly (Amigável para mecanismos de busca)</strong> para redirecionamento de sites. A implementação não é complicada e preserva seu rankins em sites de busca. Caso você mude nomes de arquivos ou apague o erro 301 aparece, informando aos sites de busca que foi “Movido permanentemente”.</p>
<p class="MsoNormal">
<p class="MsoNormal">Veja abaixo como é simples a implementação</p>
<p class="MsoNormal"><span id="more-91"></span></p>
<h2><span lang="EN-US">Redirecionamento em ColdFusion</span></h2>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span lang="EN-US">&lt;.cfheader statuscode=&#8221;301&#8243; statustext=&#8221;Moved permanently&#8221;&gt;<br />
&lt;.cfheader name=&#8221;Location&#8221; value=&#8221;http://www.nova-url.com&#8221;&gt; </span></p>
<h2><span lang="EN-US">Redirecionamento em PHP</span></h2>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span lang="EN-US">&lt;?<br />
Header( &#8220;HTTP/1.1 301 Moved Permanently&#8221; );<br />
Header( &#8220;Location: http://www.nova-url.com&#8221; );<br />
?&gt; </span></p>
<h2><span lang="EN-US">Redirecionamento em ASP </span></h2>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span lang="EN-US">&lt;%@ Language=VBScript %&gt;<br />
&lt;%<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8220;Location&#8221;,&#8221;http://www.nova-url.com/&#8221;<br />
%&gt; </span></p>
<h2><span lang="EN-US">Redirecionamento em ASP .NET </span></h2>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span lang="EN-US">&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.nova-url.com&#8221;);<br />
}<br />
&lt;/script&gt; </span></p>
<h2><span lang="EN-US">Redirecionamento em JSP (Java) </span></h2>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span lang="EN-US">&lt;%<br />
response.setStatus(301);<br />
response.setHeader( &#8220;Location&#8221;, &#8220;http://www.nova-url.com/&#8221; );<br />
response.setHeader( &#8220;Connection&#8221;, &#8220;close&#8221; );<br />
%&gt; </span></p>
<h2><span lang="EN-US">Redirecionamento em CGI PERL </span></h2>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span lang="EN-US">$q = new CGI;<br />
print $q-&gt;redirect(&#8220;http://www.nova-url.com/&#8221;); </span></p>
<h2><span lang="EN-US">Redirecionamento em Ruby on Rails</span></h2>
<p class="MsoNormal" style="margin-bottom: 12pt;"><span lang="EN-US">def old_action<br />
headers["Status"] = &#8220;301 Moved Permanently&#8221;<br />
redirect_to &#8220;http://www.nova-url.com/&#8221;<br />
end </span></p>
<h2>Redirecionar um domínio antigo para um novo (htaccess redirect)</h2>
<p class="defaultfont">Crie um arquivo .htaccess com o código abaixo</p>
<p class="defaultfont"><span lang="EN-US">Options +FollowSymLinks<br />
RewriteEngine on<br />
RewriteRule (.*) http://www.novodominio.com/$1 [R=301,L] </span></p>
<p class="defaultfont">* Lembre-se de mudar o www.novodominio.com para o seu novo domínio.<br />
<strong>*</strong> O métdodo usando .htaccess só funciona com o servidor Apache e com o Mod-Rewrite habilitado.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d91').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d91" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;BlinkBits"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/blinkbits.png" title="Add to&nbsp;BlinkBits" alt="Add to&nbsp;BlinkBits" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;Description=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;Url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.blogmemes.net/post.php?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Blogmemes"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/blogmemes.png" title="Add to&nbsp;Blogmemes" alt="Add to&nbsp;Blogmemes" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bumpzee.com/bump.php?u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;BUMPzee"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/bumpzee.png" title="Add to&nbsp;BUMPzee" alt="Add to&nbsp;BUMPzee" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;submitHeadline=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://co.mments.com/track?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Co.mments"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/comments.png" title="Add to&nbsp;Co.mments" alt="Add to&nbsp;Co.mments" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://de.lirio.us/login/?action=add&amp;address=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;De.lirio.us"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/delirious.png" title="Add to&nbsp;De.lirio.us" alt="Add to&nbsp;De.lirio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;h=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;t=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;version=0.7" rel="nofollow" title="Add to&nbsp;Feed Me Links"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/feedmelinks.png" title="Add to&nbsp;Feed Me Links" alt="Add to&nbsp;Feed Me Links" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://extension.fleck.com/?v=b.0.804&amp;url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;t=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;FURL"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/furl.png" title="Add to&nbsp;FURL" alt="Add to&nbsp;FURL" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkagogo.com/go/AddNoPopup?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;LinkaGoGo"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/linkagogo.png" title="Add to&nbsp;LinkaGoGo" alt="Add to&nbsp;LinkaGoGo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/submit.php?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;description=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Ma.gnolia"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/magnolia.png" title="Add to&nbsp;Ma.gnolia" alt="Add to&nbsp;Ma.gnolia" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;bm_description=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;T=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;h=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://popcurrent.com/submit?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;PopCurrent"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/popcurrent.png" title="Add to&nbsp;PopCurrent" alt="Add to&nbsp;PopCurrent" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rawsugar.com/tagger/?turl=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;tttl=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;RawSugar"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/rawsugar.png" title="Add to&nbsp;RawSugar" alt="Add to&nbsp;RawSugar" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rojo.com/add-subscription/?resource=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Rojo"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/rojo.png" title="Add to&nbsp;Rojo" alt="Add to&nbsp;Rojo" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/search?q=sphereit:http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://taggly.com/bookmarks.php/pass?action=add&amp;address=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Taggly"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/taggly.png" title="Add to&nbsp;Taggly" alt="Add to&nbsp;Taggly" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tailrank.com/share/?title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B&amp;link_href=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Tailrank"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/tailrank.png" title="Add to&nbsp;Tailrank" alt="Add to&nbsp;Tailrank" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;name=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/&amp;t=Como+fazer+um+redirecionamento+%26%238220%3B301+permanent+redirect%26%238221%3B" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.onebit.com.br/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d91').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d91').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.onebit.com.br/blog/2009/05/como-fazer-um-redirecionamento-301-permanent-redirect/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

