重定向到子文件夹中的控制器

时间:2015-12-05 05:52:32

标签: codeigniter

我无法访问位于子目录登录中的登录控制器。 它在我的本地服务器上运行良好。

在我的默认控制器中我做了这个

Preferences

在我的routes.php中

public function __construct()
{
    parent::__construct();
    $this->load->helper('url');

}

public function index()
{
    redirect("login");
}

有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:1)

试试这个:

IN YOU CONFIG.PHP

$config['base_url'] = '';

$config['index_page'] = '';

$config['uri_protocol'] = 'REQUEST_URI';