Created custom 404 error handling

This commit is contained in:
Gregory Ballantine
2016-11-28 18:08:26 -05:00
parent f2ca6af5bc
commit 85e434dd83
3 changed files with 28 additions and 7 deletions

View File

@ -1,12 +1,15 @@
<?php
// Home view(s)
require 'routes/index.php';
require 'routes/about.php';
require 'routes/contact.php';
require 'routes/home.php';
require 'routes/music.php';
require 'routes/shows.php';
// Main view routes
require 'routes/pages/index.php';
require 'routes/pages/about.php';
require 'routes/pages/contact.php';
require 'routes/pages/home.php';
require 'routes/pages/music.php';
require 'routes/pages/shows.php';
// API routes
require 'routes/apiv1/music.php';
// Errors
require 'routes/errors/404.php';