I paste bootstrap folder inside my CodeIgniter folder and added it to my config.php.
$config['bootstrap'] = 'bootstrap-3.3.5-dist/css/bootstrap.css';
and call it to my php script(view).
$bootstrap = $this->config->item('bootstrap');
<link rel="stylesheet" type="text/css" href="<? echo "$base/$bootstrap";?>">
But still I getting a 404 error.