我已創建member.php
,並且只有在用戶登錄了正確的憑證後才能訪問此頁面。如果沒有,它會將它們重定向到index.php
。這是代碼此網頁有重定向循環
<?
ob_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>Prime Time</title>
<link href="member.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="loadmessages.js"></script>
<?php
if ($_SESSION['username']){
session_start();
}
else
header('Location:http://website.com/website/index.php');
ob_end_flush();
?>
</head>
然而,當我運行此我得到的錯誤"This webpage has a redirect loop"
器(Chrome) 哪些錯誤的代碼? 謝謝!
我喜歡你的最後一次更新。這很好:D –
@ErmanBelegu:我該說什麼?我有點驚訝 –