16 lines
355 B
PHP
16 lines
355 B
PHP
|
<?php http_response_code(404); ?>
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<title>Erreur 404 - Ressource introuvable</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
La ressource est introuvable.
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
<?php die(); ?>
|