-1

It is my understanding that, by default, Codeigniter user this patter to access functions.

http://domain.tdl/controller/model

can this be done by default without having to edit the routes?

tereško
  • 58,060
  • 25
  • 98
  • 150
Todd Jenk
  • 301
  • 1
  • 3
  • 13
  • 2
    Actually, by default it is `controller/method/params`. Anyway, as long as the mapping is right, you don't need routes – Damien Pirsy Jan 21 '14 at 09:20
  • Damien Pirsy gave the answer. Plus you'll need to read the documentation, there is some great stuff in the static pages section: http://ellislab.com/codeigniter/user-guide/tutorial/static_pages.html – Stéphane Bourzeix Jan 23 '14 at 06:50

1 Answers1

1

It is not possible in codeigniter because of it's MVC architecture so better to use model with it's regular flow.

Shivam
  • 702
  • 2
  • 10
  • 25