I have a controller admin in my codeigniter project, i don't want users to directly access it like
'localhost://myproject/admin'
I want it to display a 404 error instead.
i want to use
localhost://myproject/something
to load my controller and i don't want to change my controller name, meanwhile my controller name is Admin. is this possible? if it is what a re the possible ways of going about it
my route :
$route['controller/admin'] = 'controller/something'.