I have a application with Codeigniter
in controllers folder I have
front/
admin/players/players.php
players is the folder inside /admin and player.php is my controller.
when I try to access with following url i am getting 404 error.
In routes.php i have defined
$route['default_controller'] = "admin/login";
$route['admin/players'] = "admin/players/players";
$route['404_override'] = '';
but its showing 404 error. can you please locate the problem?
Is this your whole controller code?
If so, you are missing an
index(){}functionlocalhost/mysite.com/admin/playersis redirecting tolocalhost/mysite.com/admin/players/playerswhich is essentially the same aslocalhost/mysite.com/admin/players/players/indexBreaking down your segments, this means you need a controller “players.php” in your “/admin/players” directory, and this controller needs an “index” function.