在PHP中使用标头位置

时间:2012-10-06 03:58:48

标签: php

我可以在使用

时使用相对路径
header("location: http://something.com/someotherthing");
PHP中的

3 个答案:

答案 0 :(得分:1)

standard是你应该使用绝对路径。

根据标准,使用相对路径不正确,但大多数流行的浏览器都会接受相对URL。

http://en.wikipedia.org/wiki/HTTP_location#Relative_URL_example

答案 1 :(得分:1)

标准(http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.30)表示位置标题必须设置为绝对路径,但大多数客户端仍然可以使用相对路径。

答案 2 :(得分:0)

路径“http://something.com/something”实际上是绝对路径,而不是相对路径。是的,你可以同时使用相对路径或绝对路径。