CSS不调用cakephp语法


CSS not calling with cakephp syntax

我想用CakePhp语法生成CSS标记。我的HTML被省略成功,但是CSS不呼。我已经把我的css放在app'webroot'css .

下面的

是我的代码。我正在使用下面的CakePhp语法。

我也使用DebugKit。希望没有造成任何问题。

        echo $this->Html->meta('icon');
        echo $this->Html->css('bootstrap');
        echo $this->Html->css('bootstrap-responsive');
        echo $this->Html->css('admin');
        echo $this->fetch('meta');
        echo $this->fetch('css');
        echo $this->fetch('script');

  <html lang="en">
          <head>
            <meta charset="utf-8">
            <title>Dashboard :: Base Admin</title>
            <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
            <meta name="apple-mobile-web-app-capable" content="yes">    
<?php
        echo $this->Html->meta('icon');
        echo $this->Html->css('bootstrap');
        echo $this->Html->css('bootstrap-responsive');
        echo $this->Html->css('admin');
        echo $this->fetch('meta');
        echo $this->fetch('css');
        echo $this->fetch('script');
            ?>
            <link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600" rel="stylesheet">       
            <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
            <!--[if lt IE 9]>
              <script src="../assets/js/html5shiv.js"></script>
            <![endif]-->
     </head>
控制器

class AdminsController extends AppController {
        var $helpers = array('Html','Form');
        public function index() {
        }
    }

结果来

<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Dashboard :: Base Admin</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <meta name="apple-mobile-web-app-capable" content="yes">    
        <link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600" rel="stylesheet">       
    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
    <!--[if lt IE 9]>
      <script src="../assets/js/html5shiv.js"></script>
    <![endif]-->
  </head>

也许尝试重新下载并提取一个新的cake副本,看看是否有相同的问题,只是为了排除特定的安装,或PHP问题?