diff options
Diffstat (limited to '')
-rw-r--r-- | web/config/routes.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/config/routes.php b/web/config/routes.php new file mode 100644 index 0000000..78df332 --- /dev/null +++ b/web/config/routes.php @@ -0,0 +1,7 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ + +$routes = array(); +$routes['home'] = 'apps/home'; +$routes['error'] = 'apps/error'; + +$routes[''] = '_index'; |