在我的應用程序中,我使用了不同的字體和bootstrap的glyphen圖標。 要在所有瀏覽器中查看結果,我已將所有必需的字體類型(woff,tft,svg,..)放在font-face中。 對於引導圖標,我只是將必要的類型放在字體文件夾中。無法在瀏覽器Chrome和IE中加載資源
如果我去本地主機,一切工作正常。在所有瀏覽器中,我可以看到結果。
但是現在我在真正的服務器上部署了我的應用程序(戰爭)。 在fireFox中,我仍然可以看到圖標和字體,但不能在Chrome和IE中看到。 在那裏,我得到控制檯以下錯誤:
http://myTestServer.com/admin-UI/fonts/source-sans-pro/Source_Sans_Pro_400.woff Failed to load resource: the server responded with a status of 500 (Internal Server Error)
...
GET http://myTestServer.com/admin-UI/fonts/glyphicons-halflings-regular.woff2
GET http://myTestServer.com/admin-UI/fonts/glyphicons-halflings-regular.woff
GET http://myTestServer.com/admin-UI/fonts/glyphicons-halflings-regular.ttf
我不明白,爲什麼它的工作原理地方,而不是真實的服務器上。 有人知道這個問題嗎?
我的CSS:
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: url('../fonts/source-sans-pro/Source_Sans_Pro_300.eot');
src: url('../fonts/source-sans-pro/Source_Sans_Pro_300.eot?#iefix') format('embedded-opentype'),
url('../fonts/source-sans-pro/Source_Sans_Pro_300.woff') format('woff'),
url('../fonts/source-sans-pro/Source_Sans_Pro_300.ttf') format('truetype'),
url('../fonts/source-sans-pro/Source_Sans_Pro_300.svg#SourceSansPro') format('svg');
謝謝!
UPDATE:
前的index.html(春季啓動的本地主機服務器才做):
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
後(這部作品在Tomcat和也myServer上)的index.html
<!-- Bootstrap Core CSS - tomcat-->
<link href="http://localhost:8080/adminUI/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Core CSS -myTestServer-->
<link href="http://myTestServer.com/adminUI/css/bootstrap.min.css" rel="stylesheet">
main.css我也加了絕對路徑。我的問題是,現在有沒有辦法來取代絕對路徑:「http://..../」與一個變量。
如果我使用的是相似的路徑,那就像在開始時一樣。 我希望你明白我的意思。
使用絕對路徑在css中包含字體文件 – Khurram
關於引導程序字體文件?他們是否也必須在CSS?我以爲引導程序會自動在字體文件夾中找到它們。我應該如何命名bootstrap的字體,以便檢測文件? – trap