You'll have to create the URI route for your new controller. You can do that in system/tastyigniter/config/routes.php
Add
$route['my_controller'] = 'my_controller';
after, on line 13
$route['default_controller'] = $default_controller;
Obviously, rename 'my_controller' to the name of your controller.