A fast and simple custom URL shortener

Shorten multiple URLs at once

Hide your referrer, Anonymize your links!

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
1. Direct Method

https://cut.cx/?u=https://google.com
https://cut.cx/?l=https://bing.com
https://cut.cx/?x=https://yandex.com

2. PHP

<?php
function gotoURL($getUrl){
return "https://cut.cx/r/".base64_encode($getUrl);
}
?>
<a href="<?= gotoURL("http://google.com") ?>">Link</a>

3. JavaScript

<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>