答案 0 :(得分:29)
在你的config / config.php中,试试这个:
$root=(isset($_SERVER['HTTPS']) ? "https://" : "http://").$_SERVER['HTTP_HOST'];
$root.= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
$config['base_url'] = $root;
答案 1 :(得分:1)
您可以在pre_controller中使用codeigniter hooks,只需将base_url http更改为https by string replace并设置基本网址
答案 2 :(得分:1)
$ config ['base_url'] =(isset($ _ SERVER ['HTTPS'])?“ https://”:“ http://”)。$ _ SERVER ['HTTP_HOST'];
这对我的虚拟主机设置有效。
答案 3 :(得分:0)
只需使用此 $config['base_url'] = 'https://' 。 $_SERVER['HTTP_HOST'] 。 str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);