我试图在名为“index.phtml”的 Zend 布局中包含一个名为“style.css”的文件。我的文件夹树是:
laltroposto
|-public
| |-index.phtml
| |-css
| | !-style.css
| !-...
|-application
| |-layouts
| | !-scripts
| | !-index.phtml
| !...
!-library
!-...
这是我包含 css 的代码(它在 head 的标签中):
<?php echo $this->headLink()->appendStylesheet('css/style.css'); ?>
我也试过:
<?php echo $this->headLink()->appendStylesheet('/css/style.css'); ?>
这是我的错误:
Failed to load resource: the server responded with a status of 404 (Not Found) http://www.laltroposto.com/js/jquery.js
一些帮助?