8 lines
250 B
PHP
8 lines
250 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
// Ce fichier est conservé pour compatibilité ascendante.
|
|
// Toute la logique est désormais dans index.php.
|
|
header('Location: /' . ($_SERVER['QUERY_STRING'] ? '?' . $_SERVER['QUERY_STRING'] : ''), true, 301);
|
|
exit;
|