Closed parthkdas closed 9 years ago
I want to handle the requests for which routing rules are not set and giving page not found message. Instead I want to display custom page not found page or redirect to some other page.
Hi @parthkdas You can try to put this in the beginning of the routes.php file
App::notFound(function(){ View::display('404.twig'); });
Thnx . Its working
I want to handle the requests for which routing rules are not set and giving page not found message. Instead I want to display custom page not found page or redirect to some other page.