Saltar al contenido

Cómo redirigir http a https en codeigniter

Es imprescindible entender el código correctamente previamente a adaptarlo a tu proyecto si ttienes algo que aportar puedes compartirlo con nosotros.

Solución:

Por favor, compruebe que esto puede ayudar

Cambios de configuración: – Vaya a “application/config/config.php” y habilite o establezca ganchos para true.

$config['enable_hooks'] = TRUE;

cree un nuevo archivo llamado hooks.php en “application/config/hooks.php” y agregue el siguiente código en hooks.php:

$hook['post_controller_constructor'][] = array(
                                'function' => 'redirect_ssl',
                                'filename' => 'ssl.php',
                                'filepath' => 'hooks'
                                );

Ahora cree un nuevo directorio con el nombre “hooks” en el directorio de la aplicación y luego cree un nuevo archivo llamado “ssl.php” en “application/hooks/ssl.php” y agregue el siguiente código a “ssl.php”: –

function redirect_ssl() 
    $CI =& get_instance();
    $class = $CI->router->fetch_class();
    $exclude =  array('client');  // add more controller name to exclude ssl.
    if(!in_array($class,$exclude)) 
      // redirecting to ssl.
      $CI->config->config['base_url'] = str_replace('http://', 'https://', $CI->config->config['base_url']);
      if ($_SERVER['SERVER_PORT'] != 443) redirect($CI->uri->uri_string());
     
    else 
      // redirecting with no ssl.
      $CI->config->config['base_url'] = str_replace('https://', 'http://', $CI->config->config['base_url']);
      if ($_SERVER['SERVER_PORT'] == 443) redirect($CI->uri->uri_string());
    

Probé sobre todos pero no funcionaron correctamente en mi caso. Encontré la siguiente solución, funciona en mi caso. Espero que sea útil para usted también.

RewriteEngine on

RewriteCond %HTTPS off
RewriteRule (.*) https://%HTTP_HOST%REQUEST_URI [R=301,L]

RewriteCond $1 !^(index.php|resources|robots.txt|public)
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]

Ahora tengo una solución, actualicé mi archivo htaccess.–

RewriteEngine On
RewriteCond %HTTPS off [OR]
RewriteCond %HTTP_HOST !^www. [OR]
RewriteCond %HTTP_HOST ^myhost.com$ [NC]
RewriteRule ^ https://www.myhost.com%REQUEST_URI [R=301,L,NE]
RewriteCond %THE_REQUEST ^[A-Z]+ /index.php(/[^ ]*)? HTTP/ 
RewriteRule ^index.php(/(.*))?$ myhost.com/$2 [R=301,L]
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ index.php/$1 [L]

Ahora, funcionó para mí sin problemas .. 🙂

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *