Is a meta refresh link.
I made long time ago a little hack for this too.
But i use my own php link redirect.
This is the code of the "link.php":
Code:
<?
foreach ($_GET as $key => $value) {
$site .= $key."=".$value."&";
}
$site = substr($site, 4, -1); // returns "http://www.elantro.cl" without &out and all variables intact
?>
<HTML>
<HEAD>
<TITLE>ElAntro.cl : redireccionando...</TITLE>
<meta http-equiv="refresh" content="1; URL=<? echo $site; ?>">
</HEAD>
<body>
<br><br><center>
Redireccionando a:<br><b><i> <? echo $site; ?></i></b></center>
</body>
</HTML>
Then, i simply link this file (link.php) into the includes/functions_bbcodeparse.php like this:
Code:
return "<a href=\"http://www.elantro.cl/link.php?url=$rightlink\" target=\"_blank\">$text</a>";
That's all.
No refer and you own link.php.
Now simply customize the page (link.php) for you own site.