我在git上找到了3.1但system里没有文件就把3.3的system文件放里面了,不管怎样让我们开始吧;
把kohana放在我的wamp里的kohana31目录下,然后开启浏览器:
一切ok,接下来重命名install.php文件或删除
然后localhost:kohan31/index.php/welcome/hello
如何去掉index.php
example.htaccess 重命名为.htaccess/----------------------
并修改其中为(kohana31为所在目录)
# Installation directory
RewriteBase /
RewriteBase /kohana31/
bootstrap.php /---------------------------------------------
在bootstrap.php设置默认路径和url不然无法起作用
Kohana::init(array(
'base_url' => '/kohana31/',
));
Route::set('default', '(<controller>(/<action>(/<id>)))')
->defaults(array(
'controller' => 'welcome',
'action' => 'index',
));
然后我们就能欢快的访问
localhost/kohana31/
丢掉index.php了