Ver Mensaje Individual
  #8 (permalink)  
Antiguo 04/11/2012, 18:19
kilu
 
Fecha de Ingreso: enero-2012
Mensajes: 15
Antigüedad: 12 años, 10 meses
Puntos: 0
De acuerdo Respuesta: Dominios con o sin www

Cita:
Iniciado por coriaweb Ver Mensaje
introduciendo en el archivo .htaccess alguno de estos dos:

Redireccionar de www a sin www

rewriteengine on
rewritecond %{http_host} ^[url]www.(.*[/url]) [nc]
rewriterule ^(.*) http://%1/$1 [r=301,l]

redirecionar de sin www a con www

rewriteengine on
rewritecond %{http_host} ^dominio.com
rewriterule ^ http://www.dominio.com%{request_uri} [l,r=301]
muchas gracias, necesitaba esto hace tiempo :)