Redirecionar SiteExistem várias maneiras de redirecionar um site ou pasta. Veja algumas opções abaixo.

Em PHP

<?
echo “<meta HTTP-EQUIV=’Refresh’ CONTENT=’0;URL=http://www.outro_site.com.br/’>”;
?>

Em Java Script

<script language=”JavaScript”>
window.location.href = “http://www.outro_site.com.br”
</script>

Em HTML

<meta http-equiv="refresh" content="0; url=http://www.outro_site.com.br">

Em .htaccess (apache)

RewriteEngine on

Options All
RewriteCond %{HTTP_HOST} ^seu_site.com.br$ [OR]
RewriteCond %{HTTP_HOST} ^www.seu_site.com.br$
RewriteRule ^nome_da_pasta$ http://www.outro_site.com.br [R=302,L]

Em ASP

<%@ Language=VBScript %>
<%
Response.Status=”301 Moved Permanently” Response.AddHeader “Location”, ” http://www.outro_site.com.br”
>