Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/02/2016, 14:52
Avatar de franciscomarin
franciscomarin
 
Fecha de Ingreso: junio-2009
Ubicación: Terrassa, BCN, CAT
Mensajes: 2.414
Antigüedad: 14 años, 10 meses
Puntos: 327
Respuesta: Páginas seguras- SSL , duplicidad en http y https

Haz una redirección para que el http siempre redireccione a https, así no tendrás duplicados:

Cita:
<IfModule mod_rewrite.c>
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>