0

我正在寻找一个简单的脚本,我可以用它来使引用者为空

一个例子是:

http://www.refnull.com/

有人知道如何在 php 或 javascript 中使引用者为空吗?我不介意任何一种方式,最好不要使用任何数据库。

所以他们去 www.examplesite.com/link.php?http://whateverlinktonull.com

4

2 回答 2

1

这样refnull.com做的方式如下(你可以通过使用像Fiddler2windows这样的工具来解决这个问题):


请求 1 内容

<meta http-equiv="refresh" content="0; url=http://www.refnull.com/?http://www.whatismyreferer.com/&attempt=1">

..它将您重定向到请求2:


请求 2 内容

<script>
    function go(){
        window.frames[0].document.body.innerHTML='<form target="_parent" method="post" action="http://www.refnull.com/?http://www.whatismyreferer.com/&attempt=1&attempt=2"></form>';
        window.frames[0].document.forms[0].submit()
    }   
</script>
<iframe onload="window.setTimeout('go()', 99)" src="about:blank" style="visibility:hidden"></iframe>

..重定向到请求 3:


请求 3“内容”

HTTP/1.1 302 Found可以使用以下 PHP 完成的标头:

header("HTTP/1.1 302 Found");
header("Location: http://www.whatismyreferer.com/");
die();

..它将您重定向到外部站点。

于 2012-12-01T13:20:16.733 回答
1

使用元刷新。推荐人是由浏览器设置的,但这通常对我来说很好。

你可以用 HTML 把它吐出来:

<meta http-equiv="refresh" content="0;URL='http://example.com/'">

或者你可以直接设置http头:

Refresh: 0;URL='http://example.com/'
于 2012-12-01T13:23:33.320 回答