我試圖在我的Zend佈局中包含一個名爲「style.css」的文件,名爲:「index.phtml」。 我的文件夾樹是:包括CSS Zend
laltroposto
|-public
| |-index.phtml
| |-css
| | !-style.css
| !-...
|-application
| |-layouts
| | !-scripts
| | !-index.phtml
| !...
!-library
!-...
這是我包括CSS代碼(這是進入頭的標籤):
<?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
有些幫助?
HTML中的輸出是什麼?您在查看該頁面時是否收到該錯誤?就好像這樣與你的css/style.css行沒有任何關係。 –
沒有錯誤,它工作正常,但沒有加載CSS,Chrome Inspect對我說:「GET http://www.laltroposto.com/css/style.css 404(Not Found)」 –
您的文檔根目錄在laltroposto/public?你可以發佈你的htaccess的內容? –