I have checked the controller name and method name but still it says "The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again."
I have tried this url's given below and got this error:
http://localhost/framework/index.php/helloworld
http://localhost/framework/helloworld/index
File under Controller name is: Helloworld.php
<?php namespace App\Controllers;
use CodeIgniter\Controller;
class Helloworld extends CI_Controller
{
public function index()
{
echo 'Hello World!';
}