bootstrap.php配置文件中可以加上以下代码,对默认base_url去除index.php
视图view中调用方法//自定义常量,清除index.php
define('SITE_URLS', set_site_url());
function set_site_url()
{
return str_replace("index.php/", "", Kohana::$base_url);
}
<?php
echo SITE_URLS;
?>
<script type="text/javascript" SRC="<?php echo
SITE_URLS?>assets/admin/js/flot/jquery.flot.min.js"></script>