feat: redirect url to main redirector

This commit is contained in:
Aliberk Sandıkçı 2023-06-25 18:47:01 +03:00
parent 7618abfef7
commit fc25a96c08
1 changed files with 25 additions and 0 deletions

25
index.html Normal file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>redirecting</title>
<script>
var a = location.href;
var b = a.substring(a.indexOf("?") + 1);
var c = "https://l.aliberksandikci.com.tr/" + b;
var d = "<a href='" + c + "'> l.aliberksandikci.com.tr/" + b;
document.getElementById("info").innerHTML = d;
window.location.replace(c);
</script>
</head>
<body>
<noscript>PLEASE ENABLE JAVASCRIPT</noscript>
<p>You will be automatically directed to the <span id="info">???</span>
</body>
</html>