2011-09-08 70 views
2

我正在Apache 2.2中工作。我的本地主機打開了我的網頁,但沒有應用CSS,也沒有加載背景圖像。我不知道爲什麼。使用Chrome開發人員工具我收到以下警告:資源解釋爲樣式表,但與MIME類型文本傳輸純正的問題?

resource interpreted as stylesheet but transferred with mime type text plain 
resource interpreted as stylesheet but transferred with mime type text html 
resource interpreted as script but transferred with mime type text html 
GET http://www.xmweb.com/js/calendar/layout-3d.css 404 (Not Found) 
resource interpreted as Image but transferred with mime type text html 

我不明白這個問題。這是在httpd.conf文件中的問題嗎?我試圖添加.htaccess文件,但仍然遇到了同樣的問題。請幫忙!

回答

1

如果看來你的瀏覽器無法加載CSS,你得到一個404(未找到),並用404消息的HTML頁面。嘗試直接通過瀏覽器加載http://www.xmweb.com/js/calendar/layout-3d.css並查看頁面。

它可以幫助打開你的Web服務器的錯誤日誌看看什麼缺失。

1

我也有類似的問題,一個樣式表,我解決了這個問題,加入這一行.htaccess文件:

AddType text/css .css 

我會嘗試這一點,也做出相應的JavaScript和圖像條目。

相關問題