Node.js中的“无法GET /”错误

时间:2016-04-27 00:25:15

标签: html node.js

我正在使用Node.js来运行一个简单的HTML服务器。 index.js文件启动完全正常,但是当你看到问题时,你连接的地方。无论何时进行连接,您都会看到Cannot GET /遍布整个网站,没有别的。

//Vars
var http       = require('http');
var express    = require("express");
var app        = express();
var connect    = require("connect");

//Show .html file

app.use(express.static(__dirname + '/public'));

//Port to listen to

app.listen(8080);

//Just for show

const PORT = 8080;
console.log("Server listening on: http://***.***.***.**:%s", PORT);

这是我用于index.js的代码,我希望有人能找到我的问题并帮我修复它。谢谢。 (对不起,如果其他人问过这个问题)

1 个答案:

答案 0 :(得分:0)

我将index.html文件放在错误的位置,必须将其移动到/public的默认目录。它位于/public

的根目录中