I want a good understandable description of index.php in MVC Frameworks… I have worked in Magento and Codeignitor…
In Magento URL’s index.php is called front controller but in codeignitor what it is?
Plz clear the concept of index.php in MVC Frameworks?
I want a good understandable description of index.php in MVC Frameworks… I have worked
Share
The index is your entry point from where it will dispatch / route your URL to the appropriate controllers/actions. You don’t have to name in index.php though, you can give it whatever name you want, as long as you call the file, it won’t be a problem.