我正在尝试检查是否$this->current_user
已设置,否则重定向到登录页面,但因为 Wall 是我的默认路由,它会循环并给我500 Internal Server Error,有没有人对如何使用它有一些想法?我正在使用PyroCMS,他们使用IonAuth。
class Wall extends Public_Controller {
public function __construct() {
parent::__construct();
if (empty($this->current_user)) {
$this->session->set_flashdata('error', 'Debes iniciar sesión para acceder a esta página');
redirect(site_url());
}
}
}
提前欢呼和感谢