我是codeigniter的新手,无法找到将bootstrap库添加到本地驱动器的位置的答案,以便在最新版本的项目中使用。
答案 0 :(得分:1)
并在应用程序文件夹外创建assets
文件夹。
application
assets
- css
- bootstrap.min.css
- bootstrap-theme.min.css
- js
- bootstrap.min.js
system
index.php
在配置(application/config/config.php
)
$config['base_url'] = 'http://localhost/path/root/folder';
在自动加载(application/config/autoload.php
)
$autoload['helper'] = array('url');
在视图中(头部)
<link href="<?php echo base_url(); ?>assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="<?php echo base_url(); ?>assets/css/bootstrap-theme.min.css" rel="stylesheet" />