我目前正在检查我的PHP脚本,看看当前的URL是不是test.php。如果不是,那么重定向。如果是,重定向。然而,我遇到了一个问题。它认为test。php不是test。php。我在这里寻找一些东西,包括其他网站,但我找不到很多同样问题的问题。如果我遗漏了什么,请随时告诉我。下面是我的代码:
<?php
/*
above code connects to DB, check if user is logged in. if so, then we run a check
with the DB to see if their user account is temporarily prohibited from
accessing the website. if they are, redirect. if not, do nothing.
*/
if(($_SERVER["REQUEST_URI"]) != "/test.php") {
echo $_SERVER["REQUEST_URI"]; // debug
echo '<meta http-equiv="refresh" content="0;URL=/test.php">';
}
?>
谢谢!
据我所知,你的重定向不工作。您需要从元标记中删除'/'。下面是代码:
echo '<meta http-equiv="refresh" content="0;URL=test.php">';