我正在使用bootstrap,它正常工作然后突然出现此错误
无法加载资源:服务器响应状态为404(未找到)http://localhost:5266/Content/fonts/glyphicons-halflings-regular.woff2
<link href="../Content/css/StyleSheet.css" rel="stylesheet" />
<link href="../Content/css/bootstrap.min.css" rel="stylesheet" />
<link href="../Content/css/bootstrap-theme.min.css" rel="stylesheet" />
<script src="../Script/js/jquery-2.2.1.min.js"></script>
<script src="../Script/js/bootstrap.min.js"></script>
请帮帮我。
答案 0 :(得分:0)
尝试将您的链接从../
更改为./
。
您可以参考此answer,或搜索有关文件路径的更多信息。
答案 1 :(得分:0)
我知道这个问题前一段时间被问过;我正在评论为他人节省时间。
错误可能是因为Web服务器默认配置无法处理woff2的意外文件类型。
在web.config文件中添加此内容,'configuration'标记:
<system.webServer>
<staticContent>
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
</staticContent>
</system.webServer>
感谢:Will Strohl