我不知道标题问题的确切原因,但您可以通过以下方式解决它 window.location 用于重定向的JavaScript而不是PHP的标头。
window.location
更换
header('Location: index.php');
同
echo("<script>window.location='index.php';</script>");
并替换
header('Location: http://www.website.com/aanmelden/index.php');
echo("<script>window.location='http://www.website.com/aanmelden/index.php';</script>");
希望能帮助到你!