Olivier Bournez
⚠ (:html:)
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: '.$nouvelleAdresse); //Redirection HTTP
header('Content-Type: text/html; charset=ISO-8859-1');
header('Connection: close');
echo '<'.'?xml version="1.0" encoding="ISO-8859-1"?>'."\n", //Ent?te XML pour ISO-8859-1
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-stric
t.dtd">'."\n",
'<html xmlns="http://www.w3.org/1999/xhtml">'."\n",
'<head>'."\n",
'<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />'."\n",
'<meta http-equiv="refresh" content="0; url='http://www.lix.polytechnique.fr/~bournez'" />'."\n", //Redirection HTML
'<title>Redirection</title>'."\n",
'<meta name="robots" content="noindex,follow" />'."\n",
'</head>'."\n",
"\n",
'<body>'."\n",
'<p><a href="http://www.lix.polytechnique.fr/~bournez">Redirection</a></p>'."\n",
'</body>'."\n",
'</html>'."\n";
?>
<:vspace>
(:htmlend:)