#06 CodeIgniter 4 URLs

Опубликовано: 30 Сентябрь 2024
на канале: GoPHP
24,058
228

-URLs in CodeIgniter are designed to be search-engine and human-friendly
example.com/news/article/my_article
example.com/class/method/ID

- The first segment represents the controller class that should be invoked.
- The second segment represents the class method that should be called.
- The third, and any additional segments, represent the ID and any variables that will be passed to the controller.