url-shorten-worker
Version:
A Url shortener using Cloudflare Worker
21 lines (17 loc) • 537 B
HTML
<html>
<head>
<title>Url-Shorten-Worker</title>
<meta http-equiv="Refresh" content="1; url={Replace}" />
<meta name="referrer" content="no-referrer" />
</head>
<body>
<p>Redirecting..<br /><a href="{Replace}">{Replace}</a></p>
<a href="https://github.com/xyTom/Url-Shorten-Worker/" target="_self">Fork me on GitHub</a>
<script type="text/javascript">
/* <![CDATA[ */
setTimeout('window.location.replace( "{Replace}" + window.location.hash );', 1000 )
/* ]]> */
</script>
</body>
</html>