You are seeing this error because the action index is not defined in controller ContentController
If you want to customize this error message, create app/views/errors/missing_action.thtml.
Fatal: Confirm you have created the ContentController::index() in file : app/controllers/content_controller.php
<?php
class ContentController extends AppController {
function index() {
}
}
?>