Скачал последнюю версию фреймворка. Установил все в папку на сервере mykohana. Внес такие изминения в файл bootstrap.php:
Kohana::init(array(
'base_url' => '/mykohana/', 'index_file'=>''
));
Набираю адрес: http://mykohana/
в браузере: hello, world!
В папке classes/controller создал файл ko3.php с таким содержимым:
<?php
defined('SYSPATH') or die('No direct script access.');
class Controller_Ko3 extends Controller
{
public function action_index()
{
$this->request->response = 'Мій перший контролер Kohana 3.0';
}
} // End
?>
Набираю адрес: mykohana/ko3
В браузере:
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404
mykohana
07/14/14 08:05:47
Apache/2.2.27 (Win32)
Что я делаю неправильно?