Sen*_*hil 7 php codeigniter-3 codeigniter-4
注销后,我尝试重定向到主页。我尝试了几种方法,但没有重定向。
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)
Dev*_*dra 17
根据 CI 4
用
return redirect()->to('url');
Run Code Online (Sandbox Code Playgroud)
如果您使用路线然后使用
return redirect()->route('named_route');
Run Code Online (Sandbox Code Playgroud)