0

我试图在名为“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

一些帮助?

4

3 回答 3

0
<?php echo $this->headLink()->appendStylesheet('css/style.css'); ?>

/css/style.css = index.phtml/css/style.css

你在 css 之前有一个额外的斜杠!

于 2012-12-23T12:34:46.320 回答
0

我决定在 www.laltroposto.org 而不是 www.laltroposto.com 上托管我的网站...我不知道为什么!

于 2012-12-27T19:55:27.727 回答
0

您的 css 文件并没有真正的问题,但是 js 文件:jquery.js

404 (Not Found) http://www.laltroposto.com/js/jquery.js

如前所述,不要忘记在 js 加载文件的起始路径添加斜杠,否则它被视为路由并发出 404 错误页面。

希望对你有帮助。

于 2012-12-27T20:36:51.143 回答