gpt4 book ai didi

php - 使用 Codeigniter 的注销功能 (Ion Auth) 出现错误 404

转载 作者:搜寻专家 更新时间:2023-10-31 21:22:34 25 4
gpt4 key购买 nike

调用此函数将我重定向到登录网页会抛出“404 错误:找不到您请求的页面”。我遵循了与另一个应用程序相同的步骤,并且运行良好。有什么想法吗?

链接

<li>
<a href="<?= base_url('auth/logout') ?>">Salir</a>
</li>

ionic 授权功能

// log the user out
public function logout() {
$this->data['title'] = "Logout";

// log the user out
$logout = $this->ion_auth->logout();

// redirect them to the login page
$this->session->set_flashdata('message', $this->ion_auth->messages());
redirect('auth/login', 'refresh');
}

Base_url

$config['base_url'] = 'http://localhost/herba/';

最佳答案

改变这个

public function logout() {
$this->data['title'] = "Logout";

// log the user out
$logout = $this->ion_auth->logout();

// redirect them to the login page
$this->session->set_flashdata('message', $this->ion_auth->messages());
redirect(base_url('auth/login'), 'refresh');
}

请确认http://localhost/herba/auth/login存在

同时检查 index.php

http://localhost/herba/index.php/auth/login

关于php - 使用 Codeigniter 的注销功能 (Ion Auth) 出现错误 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43631118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com