如何使用http-server在父目录中加载文件?

时间:2014-05-22 19:35:36

标签: html

设置

的index.html

<link rel="stylesheet" type="text/css" href="../../css/styles.css"/>
<script type="text/javascript" src="../../lib/d3/d3.js"></script>

转到localhost:8080。我收到以下错误:

[Error] Failed to load resource: the server responded with a status of 404 (Not Found) (styles.css, line 0)
[Error] Failed to load resource: the server responded with a status of 404 (Not Found) (d3.js, line 0)
[Error] ReferenceError: Can't find variable: d3 global code (localhost, line 16)

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:3)

我现在看到的解决方案是在父目录中运行http-server,然后在子目录中运行服务器访问文件。

说:我有一个src文件夹,里面有我的示例文件夹有index.html文件。 src还包含我想在index.html中使用的abc.js。