安装Kohana时遇到问题。
我删除了install.php文件,然后打印错误
Kohana_HTTP_Exception [404]:无法找到匹配URI的路由:kohana-3.3.3.1
SYSPATH / classes / Kohana / Request.php [986]
答案 0 :(得分:1)
您可能没有定义任何路线,例如see the guide
否则你可能需要捕获所有路线,如下所示:
// catch all route
Route::set('catch-all', '<any>', array('any' => '.*'))
->defaults(array(
'controller' => 'my_controller',
'action' => 'catchall',
));