注销重定向到错误页面


Logout redirect to wrong page

当我点击登出为什么它重定向到错误的页面。我使用localhost来开发我的页面,但当我点击注销它会重定向到xampp页面,它假设重定向到管理页面。

     case 'logout':
        log_activity('user logout', $curr_path);
        system_user_stopsession();
        header("Location: http://".$_SERVER["HTTP_HOST"].$web_path);
        break;

主机和路径之间缺少/:

header("Location: http://".$_SERVER["HTTP_HOST"]."/".$web_path);