How to set Dynamic base url to https in CodeIgniter?

后端 未结 3 1495
独厮守ぢ
独厮守ぢ 2020-12-29 13:58

I try the use a dynamic base url in this post:

Set Dynamic Base Url in CodeIgniter

But I used to be use the http, but now, I would like to change to https, h

3条回答
  •  情歌与酒
    2020-12-29 14:33

    $config['base_url'] = (isset($_SERVER['HTTPS']) ? "https://" : "http://").$_SERVER['HTTP_HOST'];

    this works for me with virtualhost setup.

提交回复
热议问题