15 lines
483 B
PHP
15 lines
483 B
PHP
<?php
|
|
header('HTTP/1.1 301 Moved Permanently');
|
|
header('Location: http://tourmentine.com/news/');
|
|
header('Connection: close');
|
|
echo '<', '?', 'xml version="1.0" encoding="ISO-8859-1"?>'; //entête XML pour ISO-8859-1
|
|
?>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv='refresh' content='0;url=http://tourmentine.com/news/'>
|
|
<title>Redirection</title>
|
|
</head>
|
|
<body>
|
|
<div align=center><a href='http://tourmentine.com/news/'>Redirection automatique</a>.<br />Veuillez patienter...</div>
|
|
</body>
|
|
</html>
|