PHP如何在父目录中的页面标题位置?

时间:2012-11-13 18:07:40

标签: php header directory location

我有一个first.php页面

header("Location: script/script1.php")

script1.php有另一个

header("Location: first.php") 

但它显然向/script/first.php发送了我的信息。 有没有办法将其重定向到<root>/first.php而不是<root>/script/first.php

3 个答案:

答案 0 :(得分:18)

试试这个:

header("Location: ../first.php")

或改为使用绝对路径或网址。

说明:..是用于'父目录'的unix / linux表达式。互联网是unix土地,所以规则也适用于那里。

答案 1 :(得分:1)

而不是: header("Location: ../first.php")

试试这个:  header("url: ../first.php")

这将更改网址。在某些情况下,使用位置不起作用

因为:'../'用于表示父目录&#39;。所以,这将有效。

答案 2 :(得分:1)

你可以这样做。在'0'秒 -

中重定向回主目录(Root)
<?php

     header('Refresh: 0, url = /Root_Dir/');

?>

将“Root_Dir”替换为您的目录名。