我正在使用以下代码在我的 codeigniter 网站中加载我的 css 文件。
<link rel="stylesheet" type="text/css" href="<?php $base_url?><?php $css?>style.css" />
在我的config.php
我已经使用了这个代码。
$config['base_url'] = 'http://localhost/mysite';
$config['css'] = "/assets/css/";
但是css没有加载。
我做错了什么?