Use HideRef.org for your website
If you frequently need to hide referer, feel free to integrate the HideRef.org service into your web site. Here are some code examples for common environments:
PHP example
<?php
function hideref($strUrl)
{
return "http://hideref.org/?".$strUrl;
}
?>
<a href="<?= hideref("http://www.example.com") ?>">Link</a>
ASP example
<%
function hideref(strUrl)
hideref = "http://hideref.org/?" & server.strUrl
end function
%>
<a href="<%= hideref("http://www.example.com") %>">Link</a>
JavaScript example
<script language="JavaScript">
function hideref(strUrl)
{
return "http://hideref.org/?"+strUrl;
}
</script>
<a href="http://www.example.com"
onclick="window.location.href=hideref(this.href);
return false;">Link</a>