plateforme-tfjm2/server_files/404.php

12 lines
161 B
PHP
Raw Normal View History

2019-09-02 19:19:21 +00:00
<?php
include_once "config.php";
include_once "header.php";
http_response_code(404);
echo "<h1>Cette page n'existe pas.</h1>";
include "footer.php";
exit();