coryd.dev/config/dynamic/routing.php

11 lines
163 B
PHP

<?php
if (!function_exists('redirectTo404')) {
function redirectTo404(): void
{
header("Location: /404/", true, 302);
exit();
}
}
?>