我无法访问位于子目录登录中的登录控制器。 它在我的本地服务器上运行良好。
在我的默认控制器中我做了这个
Preferences
在我的routes.php中
public function __construct()
{
parent::__construct();
$this->load->helper('url');
}
public function index()
{
redirect("login");
}
有人可以帮帮我吗?
答案 0 :(得分:1)
试试这个:
IN YOU CONFIG.PHP
$config['base_url'] = '';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';