mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 18:07:10 +00:00
12 lines
166 B
PHP
12 lines
166 B
PHP
<?php
|
|
|
|
require_once "config.php";
|
|
require_once "header.php";
|
|
|
|
http_response_code(404);
|
|
|
|
echo "<h1>Cette page n'existe pas.</h1>";
|
|
|
|
require_once "footer.php";
|
|
|
|
exit(); |