Kohana 3.2.2
local :xampp
Как передать параметр в action, постоянно вылезает 404
bootstrap.php
Route::set('test', 'test(/<action>(/<id>))')
->defaults(array(
//'directory' => 'fi',
'controller' => 'test',
'action' => 'index',
));
test.php (находится: APPPATH/classes/controller/test.php)
<?PHP defined('SYSPATH') or die('No direct script access.');
class Controller_Test extends Controller{
public function action_index(){
$id = $this->request->param('id');
$this->response->body('ID = '.$id);
}
}
Обращаюсь по урлу : http://127.0.0.1/test/param
ответ 404