What is the default URL pattern used in Codeigniter framework?
Codeigniter | The default URL pattern
In CodeIgniter, URLs are designed to be search-engine and user-friendly. CodeIgniter uses a segment-based approach rather than using a "query string" based approach.
http://www.example.com/user/edit/rakesh
The default URL pattern in CodeIgniter consists of 4 main components. They are:
Server name | example.com |
Controller | user |
Action or method | edit |
Parameter | Ramesh |