25 lines
No EOL
515 B
HTML
25 lines
No EOL
515 B
HTML
<!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> |