我已经在我的网页上完成了维护功能的设置。这是索引.php代码
<?php
session_start();
require_once("system/functions.php");
require_once("system/config.php");
if($maintenance == 1){
require_once(header("Location: index.php?page=maintenance"));
die();
session_destroy();
}elseif($maintenance == 0)
{
getPage();
}
?>
我也试过
header("Location: index.php?page=maintenance");
而不是上面的要求一次标头代码。但是如果我把
require_once("frontend/pages/maintenance.php");
它会起作用。那么问题是人们可以在地址栏中输入他们想要的每个页面,这就会出现。我需要它使用它自己的 url(适用于上面的 2 个标题代码,但我收到太多重定向错误),无论如何,您将被重定向到此 url 以查看维护屏幕
维护.php文件的 php 部分:
<?php
if($maintenance == 0){
header("Location: index.php?page=index");
die();
}
else{
header("Location: index.php?page=maintenance");
die();
}
?>
我可以删除 maintenance.php 文件上的 else 代码部分,但它将始终重定向到"网站名称"/索引.php(虽然仍然是维护屏幕,与上面提到的问题相同)
所以我需要更改我的代码,所以当有维护时,无论如何你都会被重定向到 index.php?page=maintenance。对不起,如果我错过了一些细节,已经晚了。如果需要,请随时询问我:)
这看起来像你在循环。当您在索引.php脚本中时,将执行以下操作:
require_once(header("Location: index.php?page=maintenance"));
因此,您实际上再次加载了已经在运行的脚本。它将再次找到维护==1并再次做完全相同的事情。
您应该只重定向一次,然后当您看到您已经在 page=maintenance URL 上时,实际上会显示您想要显示为维护消息的内容,如下所示:
session_start();
require_once("system/functions.php");
require_once("system/config.php");
if($maintenance == 1){
if ($_GET['page']) == 'maintenance') {
// we have the desired URL in the browser, so now
// show appropriate maintenance page
require_once("frontend/pages/maintenance.php");
} else {
// destroy session before exiting with die():
session_destroy();
header("Location: index.php?page=maintenance");
}
die();
}
// no need to test $maintenance is 0 here, the other case already exited
getPage();
确保在前端/页面/维护中.php不要重定向到index.php?page=maintenance,否则您仍然会陷入循环。
所以前端/页面/维护.php应该看起来像这样:
// make sure you have not output anything yet with echo/print
// before getting at this point:
if($maintenance == 0){
header("Location: index.php?page=index");
die();
}
// "else" is not needed here: the maintenance==0 case already exited
// display the maintenance page here, but don't redirect.
echo "this is the maintenance page";
// ...