注销后,我尝试重定向到主页。我尝试了几种方法,但没有重定向。
class User extends BaseController
{
public function __construct()
{
helper('url');
}
Run Code Online (Sandbox Code Playgroud)
用于注销功能。我用了三种方式
redirect('/');
Run Code Online (Sandbox Code Playgroud)
或者
header("Location:".base_url());
Run Code Online (Sandbox Code Playgroud)
或者
route_to('/');
Run Code Online (Sandbox Code Playgroud)