Agradecemos a Evan Mattson pelos comentários.
De W3C, Técnica H76: Usando a atualização meta para criar um redirecionamento instantâneo do lado do cliente :
The objective of this technique is to enable redirects on the client side without confusing the user. Redirects are preferably implemented on the server side (see SVR1: Implementing automatic redirects on the server side instead of on the client side (SERVER) ), but authors do not always have control over server-side technologies.
Exemplo do link acima:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>The Tudors</title>
<meta http-equiv="refresh" content="0;URL='http://thetudors.example.com/'" />
</head>
<body>
<p>This page has moved to a <a href="http://thetudors.example.com/">
theTudors.example.com</a>.</p>
</body>
</html>
Basicamente, uma atualização é feita após zero segundo (imediatamente) para o URL especificado, antes que o conteúdo da página seja carregado e sem JavaScript.