首页 > PHP资讯 > PHP培训技术 > Kohana如何去掉URL中index.php

Kohana如何去掉URL中index.php

PHP培训技术

Kohana rewrite去掉URL中index.php教程:

第一步:打开bootstrap.php添加初始化配置'index_file' => FALSE

Kohana::init(array(        'base_url'   => '/kohana/',        'errors'     => TRUE,        'index_file' => FALSE));

第二步:直接将kohana中的example.htaccess改为.htaccess 即可,根据你的实际情况修改RewriteBase


RewriteEngine OnRewriteBase /kohana/	Order Deny,Allow	Deny From AllRewriteRule ^(?:application|modules|system)b.* index.php/$0 [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule .* index.php/$0 [PT]

 

PHP培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持33不支持0