kohana 在配置文件上向我抛出一个错误

kohana throws me an error on the configuration file

我在安装 Kohana 时遇到问题。

我删除了 install.php 文件,然后我打印了错误

Kohana_HTTP_Exception [ 404 ]: Unable to find a route to match the URI: kohana-3.3.3.1

SYSPATH/classes/Kohana/Request.php [ 986 ]

您可能没有定义任何路由,在这种情况下see the guide

否则,您可能需要像下面这样的全包路线:

// catch all route
Route::set('catch-all', '<any>', array('any' => '.*'))
    ->defaults(array(
        'controller' => 'my_controller',
        'action' => 'catchall',
    ));