doulu3865 2016-10-30 13:11
浏览 48
已采纳

相对路径未重定向的位置标头

My header tag doesn't redirect correctly and I don't find out why. This is my line:

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

The file is located at: www.example.com/one/two/example.php

Now, if I enter the page and get instantly redirected (as it should) it loads www.example.com/one/two/example/destination.php instead of www.example.com/one/destination.php.

It just adds the destination.php to the current path. Very strange.

  • 写回答

1条回答 默认 最新

  • dsf55s1233 2016-10-30 13:20
    关注

    Try this:

    header("Location: //www.example.com/one/destination.php");
    

    I used a scheme-less URI because the question doesn't specify whether you're using http:// or https://.

    Although relative paths are acceptable, the spec calls for the use of absolute URIs. I would rely on that for consistency.

    14.30 Location

    The Location response-header field is used to redirect the recipient to a location other than the Request-URI for completion of the request or identification of a new resource.

    The field value consists of a single absolute URI.

       Location       = "Location" ":" absoluteURI
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?