diff options
Diffstat (limited to 'app/index.php')
-rw-r--r-- | app/index.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/index.php b/app/index.php index 44c2de9..21f3036 100644 --- a/app/index.php +++ b/app/index.php @@ -115,6 +115,12 @@ function main(array $argv) : void break; } } + + /* page not found */ + else + { + require "view/404.php"; + } } } |