如何重定向用户并确保 HTTP_REFERER 在到达名为 redirect.php 的页面后不会转移到下一页。
程序流程如下:
1) 在http://example.com/index.php页面上(包含指向 redirect.php 的链接)
2) 用户点击redirect.php的链接,它会发送header('Location: http://otherlocation.com/index.php ');
3)我需要防止 otherlocation.com 从看到 HTTP_REFERERhttp://example.com/index.php
我试过了:
header('Location:redirect.php');
这不起作用,因为 HTTP_REFERER 填充了第一页 ( http://example.com/index.php ) 中的值。