0 votes
in CodeIgniter by
What is the basic CodeIgniter URL structure?

1 Answer

0 votes
by

The basic CodeIgniter URL structure generally uses a segment based approach instead of using the 'query-string' approach.

The basic CodeIgniter URL structure is as depicted below:

projectName/index.php/class/method/ID

A controller class that generally needs to be invoked is represented by the Class.

ID is basically an additional segment that is passed to the controllers.

Related questions

0 votes
asked Dec 25, 2020 in CodeIgniter by SakshiSharma
0 votes
asked Dec 30, 2020 in CodeIgniter by SakshiSharma
...