如果codeigniter在控制器中启用查询字符串但无法在我的控制器方法上重定向?为什么? codeigniter config.php文件提供此功能,您只需激活重写此查询
$config['enable_query_strings'] = TRUE;
同时我们的控制器无法重定向控制器方法 例如,我使用的是此版本的CodeIgniter v3.0.3(当前版本)。
/ home / test / Pictures / SDScreenshot from 2015-11-07
<?php
defined ('BASEPATH') or exit('No direct script access allow');
class Route extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->helper('url');
}
function index()
{
$this->setting();
}
public function setting()
{
$object=&get_instance();
$this->path();
}
public function path()
{
$this->load->view('route_view');
}
function log()
{
$base=site_url().'/Route/auto_range';
redirect($base);
}
function auto_range()
{
echo 'simple auto_range is alreafy modified';
}
}