Kohana rewrite去掉URL中index.php教程:
Kohana::init(array( 'base_url' => '/kohana/', 'errors' => TRUE, 'index_file' => FALSE));
第二步:直接将kohana中的example.htaccess改为.htaccess 即可,根据你的实际情况修改RewriteBase
RewriteEngine OnRewriteBase /kohana/ Order Deny,Allow Deny From All RewriteRule ^(?:application|modules|system)b.* index.php/$0 [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule .* index.php/$0 [PT]