所以我刚刚下载了一个git repo,我对PHP并不是很擅长,所以这就是我在这里的原因。
我在页面错误上获得了太多的重定向。
准确地说这个错误:“尝试打开”mysite.com“时发生了太多的重定向。如果您打开一个重定向的页面以打开另一个页面然后被重定向以打开原始页面,则可能会出现这种情况。” / p>
我也试过在Firefox和Chrome浏览器上打开但没有运气。
我的index.php代码是:
intrinsicContentSize
我的inc / start.php是:
<?php
header('X-Frame-Options: DENY');
$init=true;
include './inc/start.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><?php echo $settings['title'].' - '.$settings['description']; ?></title>
<?php include './js/includer.php'; ?>
</head>
<body>
<?php include './themes/'.$settings['activeTheme'].'/frontpage.php'; ?>
</body>
</html>
<?php include './inc/end.php'; ?>
请帮助教导代码中的错误以及如何解决它。我相信start.php中的代码再次调用index.php,再次调用start.php,重定向循环变得无限。
由于