localhost未正确加载文件

时间:2015-12-08 07:07:19

标签: localhost

我在从wamp中的localhost加载css和js文件时遇到问题 它总是说重新加载页面以获取源。

[<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//assets/css/fullcalendar.css">
Reload the page to get source for: http://assets/css/fullcalendar.css
</link>
 <script src="//assets/js/jquery.min.js">
Reload the page to get source for: http://assets/js/jquery.min.js> </script>]

1 个答案:

答案 0 :(得分:0)

您正在使用协议相关网址访问您的资源,使用

//assets/...

这很可能是错误的,因为服务器会尝试访问http://assets/ ...或https://assets/ ...

中的文件

如果您的资源位于名为&#39; assets&#39;的文件夹中。在站点根目录中,只需使用单斜杠

href="/assets/..."