0
我正在使用以下代碼在我的codeigniter網站中加載我的css文件。爲什麼我的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沒有加載。
我做錯了什麼?