Please visit {$_SERVER['HTTP_HOST']}" );
}
$tpl = new dle_template;
$tpl->dir = ( ROOT_DIR.'/templates/');
$tpl->load_template('redirect.tpl');
$tpl->set('{title}', $config['short_title']);
$tpl->set('{home_url}', $config['http_home_url']);
$tpl->set( '{url}', $url );
$tpl->compile( 'redirect' );
$tpl->clear();
echo $tpl->result['redirect'];
die();
//@header ( 'Location: ' . $url );
//die ( "Link Redirect:
Please click here." );
?>