2

我有一个使用 CodeIgniter 的网站(一个旧版本,随着时间的推移已经被几个开发人员升级)。该站点使用 HTTP 可以 100% 正常工作(我的测试环境不能使用 HTTPS),但是当我切换到 HTTPS 时,所有 CSS 背景图像都会切换到使用 IP 地址?

背景图像丢失   CSS 正在使用 IP 地址

在每一页中,为了便于使用,我都包含以下代码段,但它产生相同的 IP 地址,所以我认为问题出在site_url()函数中 -image_url()只需添加到site_url().

<script type="text/javascript">
    var BASE_URL = '<?= site_url() ?>'; // http://555.555.55.555/
    var IMG_PATH = '<?= image_url() ?>'; // http://555.555.55.555/images/main
</script>

Site_url() 正在返回 IP 地址

我没有“实时测试环境”来测试更改并且很难过。我相信下面的覆盖函数force_ssl()可能会解决问题,但不知道导致问题的原因或原因。(force_ssl()函数来自这里。)

我正在使用 CodeIgnitercarabiner插件来提供 CSS/JS 并具有以下功能来强制 SSL/HTTPS 在我的my_helper.php

if (!function_exists('force_ssl')) {
    function force_ssl() {
        if (ENVIRONMENT != 'development') {
            $CI = & get_instance();
            $CI->config->config['base_url'] = str_replace('http://', 'https://', $CI->config->config['base_url']);
            if ($_SERVER['SERVER_PORT'] != 443) {
                redirect($CI->config->config['base_url'] . $CI->uri->uri_string());
            }
        }
    }
}

/**
 * Override the site_url function so it does https
 *
 * @param <type> $uri
 * @return <type>
 */
function site_url($uri = '', $https = FALSE, $only_images_js_css = true) {
    if ($https || (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443)) {
        if (ENVIRONMENT != 'production') {
            $secure_connection = FALSE;
        } else {
            $secure_connection = TRUE;
        }
    } else {
        $secure_connection = FALSE;
    }

    $CI = & get_instance();
    if (!$secure_connection) {
        return str_replace("https://", "http://", $CI->config->site_url($uri));
    } else {
        // fallback - .htaccess should cover this - but just to make sure...
        // If we only want the images, js, css, etc. to have https://
        if ($only_images_js_css === true) {
            $needs_ssl = false;
            $extensions_to_check = array(".js", ".css", ".jpg", ".gif", ".png", ".ico");
            foreach ($extensions_to_check as $extension_to_check) {
                if (stristr($uri, $extension_to_check) !== FALSE) {
                    $needs_ssl = true;
                    break;
                }
            }
            if ($needs_ssl === true) {
                return str_replace("http://", "https://", $CI->config->site_url($uri));
            } else {
                return str_replace("https://", "http://", $CI->config->site_url($uri));
            }
        } else {
            return str_replace("http://", "https://", $CI->config->site_url($uri));
        }
    }
}

有一个更好的方法吗?(即从 HTTP 切换到 HTTPS)和/或我的site_url()和/或force_ssl()函数有什么问题?

4

2 回答 2

1

问题原来是我的 CSS 放大的一部分(之前已修改以允许重新配置 CodeIgniter 文件夹)

使用 codeigniter Carabiner 插件 - cssmin.php 是问题文件.... https://github.com/tonydewan/Carabiner

于 2013-09-26T01:17:42.847 回答
1

我不确定问题是否与这些功能有关。他们正在从base_url配置中获取数据。如果未设置 base_url,Codeigniter 会尝试猜测the protocol, domain and path to your installation.,我认为这是服务器设置问题,因为 Codeigniter 用于$_SERVER['HTTP_HOST']获取域/IP。

if ($this->config['base_url'] == '')
{
    if (isset($_SERVER['HTTP_HOST']))
    {
        $base_url = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off' ? 'https' : 'http';
        $base_url .= '://'. $_SERVER['HTTP_HOST'];
        $base_url .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
    }
    else
    {
        $base_url = 'http://localhost/';
    }

    $this->set_item('base_url', $base_url);
}
于 2013-09-25T18:19:30.767 回答