INSTRUCCIONES: Antes de realizar cambios o ediciones a nivel de código realice una copia de su sitio web. A continuación copiar y pegar el código dentro del archivo (htaccess), recuerde reemplazar "www.example.com" por su propio dominio, si no lo hace no funcionará CÓDIGO PARA SITIOS WEB ESTANDAR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CÓDIGO PARA JOOMLA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - RewriteEngine On RewriteCond %{HTTPS} OFF RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -