头部功能无法正常使用php中的会话销毁

时间:2015-12-12 08:24:19

标签: php

我正在尝试通过以下代码注销后转到索引页面,但是我的页面包含注销代码。

通过此代码注销页面调用

<a href="logout.php">
    <span class="gly glyphicon glyphicon-log-out"></span>Log Out
</a>

退出代码

session_start();
session_destroy();
header('location : index.php');

退出后点击它,转到&#34; http://localhost/check/logout.php&#34;页,

1 个答案:

答案 0 :(得分:0)

根据您的文件结构,您有logout.php所在的文件夹(或重写),由于您的锚点,您将被重定向到该页面。添加斜杠&#34; /&#34;在您的锚点中的logout.php之前转到localhost / logout.php。

包含文件已解决(您的问题有点模糊)并且您没有被重定向,这是由于您定义的标题。你应该用大写的第一个字母来进行一个propper重定向。

 header('Location: index.php');