我可以在使用中使用相对路径吗
header("location: http://something.com/someotherthing");
在 PHP 中
标准是您应该使用绝对路径。
根据标准,使用相对路径是不正确的,但大多数流行的浏览器都会接受相对 URL。
http://en.wikipedia.org/wiki/HTTP_location#Relative_URL_example
标准(http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.30)说位置标头必须设置为绝对路径,但大多数客户端仍然可以使用相对路径。
路径“http://something.com/something”实际上是绝对路径而不是相对路径。是的,您可以同时使用相对路径或绝对路径。