9 lines
160 B
PHP
9 lines
160 B
PHP
<?php
|
|
|
|
if (! function_exists('redirectTo404')) {
|
|
function redirectTo404(): void
|
|
{
|
|
header('Location: /404/', true, 302);
|
|
exit();
|
|
}
|
|
}
|