Missing Method in ProductController

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

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

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

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

}
?>