summaryrefslogtreecommitdiffstats
path: root/app/index.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app/index.php6
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";
+ }
}
}