我在welcome
下面有控制器重定向到另一个控制器的功能controllers/auth/login.php
function __construct() {
parent::__construct();
$this->load->helper('url');
$this->load->library('tank_auth');
}
function index() {
if (!$this->tank_auth->is_logged_in()) {
redirect('/auth/login');
} else {
$data['user_id'] = $this->tank_auth->get_user_id();
$data['username'] = $this->tank_auth->get_username();
$this->load->view('welcome', $data);
}
}
在这里,config.php
:
$config['base_url'] = '';
$config['index_page'] = 'index.php';
它运作良好。但是当我将配置文件中的 base_url 指定为:
$config['base_url'] = 'http://localhost/cilog/';
$config['index_page'] = '';
Object not found
. 为什么会这样?但是当我指定index_page
到index.php
.