Я создаю остальные API, используя codeigniter, и хочу использовать функцию, но после нажатия «http://localhost/codeigniter-rest-api-master/api/testing" отображается ошибка« 404 страница не найдена ». Где я ошибаюсь?
вот мой»application / config / rout.php "
$route['api'] = 'api/users/';
//api/users
$route['api/users'] = 'api/testing/testing/';
$route['api/users/format/json'] = 'api/testing/testing/format/json';
$route['api/users/format/xml'] = 'api/testing/testing/format/xml';
$route['api/users/format/html'] = 'api/testing/testing/format/html';
$route['api/users/format/csv'] = 'api/testing/users/format/csv';
$route['api/users.json'] = 'api/testing/testing.json';
$route['api/users.xml'] = 'api/testing/testing.xml';
$route['api/users.html'] = 'api/testing/testing.html';
$route['api/users.csv'] = 'api/testing/testing.csv';
вот мое" application / controller / api / Users.php "
public function testing()
{
echo "hello world";
}