Free dereferer service!  

Use this system on your website

If you frequently need to hide referer, feel free to integrate the our service into your web site. Here are some code examples for common environments:

PHP example

<?php
function deref($strUrl)
{
  return "https://deref.us/?".$strUrl;
}
?>

<a href="<?= deref("http://www.example.com") ?>">Link</a>
      

ASP example

<%
function deref(strUrl)
  deref = "https://deref.us/?" & server.strUrl
end function
%>

<a href="<%= deref("http://www.example.com") %>">Link</a>
      

JavaScript example

<script language="JavaScript">
function deref(strUrl)
{
  return "https://deref.us/?"+strUrl;
}
</script>

<a href="http://www.example.com" 
   onclick="window.location.href=deref(this.href); 
   return false;">Link</a>
      

 
 
© Derefer 2024
An OpenBoxTeam Company.