Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the Reserved Routes in FuelPHP Framework?
Home
FuelPHP
What is the Reserved Routes in FuelPHP Framework?
+2
votes
asked
Jan 16, 2022
in
FuelPHP
by
DavidAnderson
What is the Reserved Routes in FuelPHP Framework?
fuelphp-interview-questions
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 16, 2022
by
DavidAnderson
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.
...