+2 votes
in FuelPHP by
What is the Reserved Routes in FuelPHP Framework?

1 Answer

0 votes
by
There are four reserved routes-
  • _403_-This route is followed at the time of uncaught HttpNoAccessException.
  • _root_-It is the default route to be followed due to the unspecified URI.
  • _404_-At the time of HttpNotFoundException, this route is followed.
  • _500_- Uncaught HttpServerErrorException leads to following this route.

Related questions

+2 votes
asked Jan 16, 2022 in FuelPHP by DavidAnderson
+2 votes
asked Jan 16, 2022 in FuelPHP by DavidAnderson
...