header函数不在子目录上工作,但在父目录上工作

时间:2014-05-07 15:52:00

标签: php

header("Location: ../mobile/index.php");

标头功能不适用于子目录文件。但是在父目录文件上使用它时效果很好。 谁能知道原因???

问题在于php文件的编码。我已将utf-8更改为Unicode。现在它的工作......

1 个答案:

答案 0 :(得分:0)

index.php中你需要使用这样的位置:

header('Location: /file_of_root_folder.php');

在子目录中,您使用普通:

header('Location: ../file_of_root_folder.php');

更改位于根文件中。您需要在文件名前添加/