我只是重启我的网络服务器(nginx),然后尝试我的网站
我收到一个名为Your config file does not appear to be formatted correctly.
的错误是什么意思?
答案 0 :(得分:3)
我不确定您的配置CI。但我在更新错误的配置时面临同样的问题@cartalot。
我的更改是
$config['base_url'] = 'http://'.$_SERVER['SERVER_NAME']."/";
$config['base_url_https'] = 'http://'.$_SERVER['SERVER_NAME']."/";
我将其更改为
$config['base_url'] = 'http://'.$_SERVER['SERVER_NAME']."/";
$config['base_url_https'] = 'https://'.$_SERVER['SERVER_NAME']."/";