我使用php和jquery mobile(最新版本)並且導航存在一些問題。使用php和jquery mobile導航問題
我有一個網頁,名爲index.php的:
<a href="logout.php">Sign Out</a>
當點擊該鏈接重定向到logout.php。該logout.php頁面看起來是這樣的:
<?php
session_start();
unset($_SESSION['username']);
if(session_destroy()) {
header("Location: login.php");
}
?>
什麼情況是在瀏覽器中修改logout.php的URL,並顯示一個空白頁。它不會去login.php頁面。如果我刷新瀏覽器中的刷新按鈕,它將重定向到login.php。
谷歌搜索,我發現它可能是用PHP標題號召的問題問題,所以我嘗試使用JavaScript和而不是沒有運氣:
<?php
session_start();
unset($_SESSION['username']);
if(session_destroy()) {
//header("Location: index.php");
?>
<script>window.location.replace("index.php");</script>
<?php
}
?>
也許這將幫助你:['rel = external'不工作試圖鏈接到外部網站](http://stackoverflow.com/questions/11886945/rel-external-is-not-working-trying-鏈接到外部網站) – deblocker