
What is the default URL pattern used in Codeigniter framework?
Last updated 3 years, 11 months ago | 1866 views 75 5

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 |