我是 yii 的新手。我刚刚在yii中创建了一个模块文件结构如下
-yii
-protected
-modules
-admin
-controller
-model
-view
-layout
-main.php
-css
-style.css
-images
-logo.jpg
我能够将布局设置为这样
'modules'=>array(
// uncomment the following to enable the Gii tool
'admin'=>array(
'layoutPath' => 'protected/modules/admin/views/layouts', ;
)
现在布局是从管理模块呈现的问题是我无法使用加载样式表
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/protected/modules/admin/css/reset.css" media="all">
有人知道在 yii 中加载样式表的正确方法吗