我在网上找不到任何与此相关的内容,这不是主要问题,但它困扰着我。每当我使用php标头功能时,它都会在目标网址后附加#。
<?php
include ("../utilities/core.php");
if(LoggedIn())
{
header('Location: ../index.php');
exit();
}
?>
它重定向到“ localhost / index.php#”,而不是“ localhost / index.php”。这是标准吗?如果可以,我该怎么做?如果不是,那么可能是什么原因以及解决方案?