当我单击注销时,为什么它将我重定向到错误的页面。我正在使用 locahost 来开发我的页面,但是当我单击注销时,它会将我重定向到 xampp 页面,它假设将我重定向到管理页面。
case 'logout':
log_activity('user logout', $curr_path);
system_user_stopsession();
header("Location: http://".$_SERVER["HTTP_HOST"].$web_path);
break;