What is the default URL pattern used in Codeigniter framework?
Last updated 6 years, 4 months ago | 3327 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 |