Перенаправление на другой адрес
// Средствами Joomla
// jimport('joomla.application.component.controller');
// JController::setRedirect("/new_address","message","type");
// JController::redirect();
$this->setRedirect("/new_address","message","type");
// Простое
$link = 'http://ya.ru';
header("Location:{$link}");
exit();
// С указанием кода перенаправления (301 - перемещен постоянно, 302 - перемещен временно)
header("HTTP/1.1 301 Moved Permanently");
header("Location: {$link}");
exit();
// Средствами html:
<meta http-equip="refresh" content="1; url=http://sivers.su/site/web.html">
Список кодов состояния HTTP