InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by routing in Codeigniter? |
|
Answer» It is the process of taking a URI endpoint and decomposing it into parameters to DETERMINE module controller and ACTION of that controller should receive the request.
CODEIGNITER has a USERFRIENDLY URI routing rule so that we can re-route URL easily . There is a one-to-one relationship between a URL string and its corresponding controller class and its methods.
Routing is a technique through which we can converts SEO friendly URLs into a server code format that easily understandable.
We can manage these from routes.php file at the located in application/config. |
|