Foros del Web » Creando para Internet » Diseño web »

redireccionamiento 301 ayudaa!

Estas en el tema de redireccionamiento 301 ayudaa! en el foro de Diseño web en Foros del Web. hola q tal? tengo una web del estilo "nombre.servidorgratis.com" la tengo con buena posicion en google y alto PR. tambien tengo una direccion "www.xxxxxx.com.ar", ya ...
  #1 (permalink)  
Antiguo 24/07/2007, 16:14
 
Fecha de Ingreso: julio-2007
Mensajes: 1
Antigüedad: 16 años, 9 meses
Puntos: 0
redireccionamiento 301 ayudaa!

hola q tal?

tengo una web del estilo "nombre.servidorgratis.com"
la tengo con buena posicion en google y alto PR.

tambien tengo una direccion "www.xxxxxx.com.ar", ya la configuré de tal forma que al entrar vaya directamente a mi sitio "nombre.servidorgratis.com"

me gustaría saber cómo hacer la redireccion 301, para que en google aparezca mi direccion nueva "www.xxxxxx.com.ar" en vez de la antigua "nombre.servidorgratis.com" (todo sin perder mi posicionamiento y PR)

NOTA: la web la hice yo puramente con HTML (nada de ASP, ni PHP)
les aclaro q tengo conocimientos basicos de HTML nada mas.

saludos y gracias de antemano, con cualquier ayuda q puedan darme!
  #2 (permalink)  
Antiguo 24/07/2007, 18:25
Avatar de gvilla  
Fecha de Ingreso: julio-2007
Mensajes: 35
Antigüedad: 16 años, 9 meses
Puntos: 1
De acuerdo Re: redireccionamiento 301 ayudaa!

Saludos,

encontre esto en la red, espero y te sirva....

Redirect Old domain to New domain (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

Please REPLACE www.newdomain.com in the above code with your actual domain name.

In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.

Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.


Redirect to www (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to www.domain.com
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

Please REPLACE domain.com and www.newdomain.com with your actual domain name.

Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.


How to Redirect HTML

Please refer to section titled 'How to Redirect with htaccess', if your site is hosted on a Linux Server and 'IIS Redirect', if your site is hosted on a Windows Server.


Gvilla.
__________________
GVilla
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 06:14.