Enter the URL you want to anonymize
Why Use this Website?
A blank referrer increases privacy. Webmasters can use this tool to prevent their site from appearing in the server logs of referred pages as referrer. The operators of the referred pages cannot see where their visitors come from any more.
Using on Your Site
https://cut.cx/?u=https://google.com
https://cut.cx/?l=https://bing.com
https://cut.cx/?x=https://yandex.com
<?php
function gotoURL($getUrl){
return "https://cut.cx/r/".base64_encode($getUrl);
}
?>
<a href="<?= gotoURL("http://google.com") ?>">Link</a>
<script type="text/javascript">
function gotoURL(getUrl){
return "https://cut.cx/r/"+btoa(getUrl);
}
</script>
<a href="https://google.com" onclick="window.location.href=gotoURL(this.href); return false;">Link</a>