Come effettuo un redirect da un sito ad un altro ?

Ci sono vari modi per effettuare un redirect, senza utilizzare i DNS:

.htaccess:
RewriteEngine On
RewriteBase /

RewriteRule ^(.+)*$ http://www.nuovosito.ext/$1 [L,R=301]


PHP
:
<?PHP
header("location: http://www.nuovosito.ext/index.php");
?>


XHTML
:
<html>
<HEAD>
<TITLE>Redirect...</TITLE>
<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=http://www.nuovosito.ext">
</HEAD><body></body></html>