Missing Method in CustomerController

You are seeing this error because the action index is not defined in controller CustomerController

If you want to customize this error message, create app/views/errors/missing_action.thtml.

Fatal: Confirm you have created the CustomerController::index() in file : app/controllers/customer_controller.php

<?php
class CustomerController extends AppController {
   function index() {
   }

}
?>