Los temas sobre
.htaccess y configuración se tratan en el foro de
Apache. Aquí dejo las directivas:
Redirigir de sin a www:
Código Apache:
Ver originalRewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Pasar todo el tráfico a https:
Código Apache:
Ver originalRewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
Saludos