Suppose i have a module named "backend". I have this structure inside "app" folder:
app/modules/backend/controller/user.php
So, i can access my controller in URL/backend/user/index
Then, i want to create in a controller that can be accessed via URL/backend/customer/index But for now i want to put it inside the app folder, not inside the backend module. So i create file:
app/classes/controller/backend/customer.php
The problem is, i cannot access the desired URL. I take a look at the core file, it seems that once the module is found, FuelPHP ignored the other controller inside a folder with same name, although FuelPHP cannot find the controller inside the module.