我对子文件夹路由有一个小问题,在 kohana 中有很多关于路由的问题,但我都写了,我仍然有问题,我在 boostrap 中添加了以下几行:
Route::set('admin', 'folder(/<controller>(/<action>(/<id>)))')
->defaults(array(
'directory' => 'folder',
'controller' => 'test',
'action' => 'pokaz',
));
我的控制器文件夹(应用程序/控制器/文件夹)中有文件夹,我的控制器:
class Controller_Folder_Test extends Controller {
public function action_pokaz() {
echo "dasdsadsad";
}
}
当我写这个网址时: 1. http://example.com/kohana/index.php/test/pokaz - (Kohana - 未找到网址)2. http://example.com/kohana/index.php/folder /test/pokaz - (Kohana - 未找到 url) 3. 没有 /index.php/ - 404 未找到 - Apache
所以我真的不知道我做错了什么