yanlış anlamadıysam istediğiniz link şekil
http://r10.net/git.php?url=http://google.com
bunu yapmak için aşağıdaki dosyayı kendinize göre düzenleyip ftp ile ana dizine atın.
kullanımı
http://siteadiniz.com/git.php?url=ht...ileceksite.com
bu dosyayı git.php olarak kaydedip ana dizine(public_html) dizinine atın
<?php
$url=$_GET['url'];
?>
<html>
<head>
<noscript>
<meta http-equiv="Refresh" content="10; URL=<? echo $url; ?>" />
</noscript>
<script type="text/javascript">
<!--
function exec_refresh()
{
window.status = "<<<-- Yönlendiriliyorsunuz -->>>" + myvar;
myvar = myvar + " .";
var timerID = setTimeout("exec_refresh();", 100);
if (timeout > 0)
{
timeout -= 1;
}
else
{
clearTimeout(timerID);
window.status = "";
window.location = "<? echo $url; ?>";
}
}
var myvar = "";
var timeout = 20;
exec_refresh();
//-->
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Yönlendiriliyorsunuz..</title>
<style type="text/css">
<!--
.stil1 {color: #FF0000}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #000000;
}
a:active {
text-decoration: none;
}
.stil2 {color: #FF3300}
.stil3 {color: #0000FF}
.stil4 {color: #FFFF00}
.stil5 {color: #00FF00}
.stil6 {
font-size: 36px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<div align="center">
<p> </p>
<p> </p>
<span class="stil6">Yönlendiriliyorsunuz..</span>
</div>
</body>
</html>