如何在codeigniter中强制ssl?

时间:2017-03-06 12:01:22

标签: php codeigniter ssl

我正在使用codeigniter 3.如何强制SSL连接到我的网页,以便所有页面都加载旁边的绿色挂锁图标?

注意:如何在不编辑htaccess文件的情况下执行此操作?

3 个答案:

答案 0 :(得分:20)

从位置application/config/config.php打开配置文件,并启用或设置挂钩为true,如下所示:

$config['enable_hooks'] = TRUE;

然后在hooks.php文件夹(即application / config / hooks.php)中创建一个名为config的新文件,并在其中添加以下代码:

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

现在在hooks文件夹(即应用程序/挂钩)中创建一个名为application的新目录,然后在ssl.php文件夹中创建一个名为hooks的新文件(即应用/钩/ ssl.php)。

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());
    }
}

答案 1 :(得分:19)

  1. 在配置中更改<!DOCTYPE html> <html ng-app="module"> <head> <script data-require="angularjs@1.6.2" data-semver="1.6.2" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.js"></script> <link rel="stylesheet" href="style.css" /> <script src="script.js"></script> </head> <body> <div ng-controller="MainCtrl"> <textarea input-field-selection on-selected="textSelected" type="text"></textarea> <p>{{selectedText}}</p> </div> </body> </html>

    base_url
  2. 为您的安全连接提供证书
  3. 将来自$config['base_url'] = 'https://www.my-site.com/'; 的传入流量重定向到http

    https

答案 2 :(得分:0)

Codeigniter(GAE):将ssl.php文件中的http重定向到https的最佳做法:

function force_ssl() {
    $server=$_SERVER["SERVER_NAME"];
    $uri=$_SERVER["REQUEST_URI"];
    if ($_SERVER['HTTPS'] == 'off') {
        redirect("https://{$server}{$uri}");
    }
}