我正在使用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的代码,我希望有人能找到我的问题并帮我修复它。谢谢。 (对不起,如果其他人问过这个问题)
答案 0 :(得分:0)
我将index.html文件放在错误的位置,必须将其移动到/public
的默认目录。它位于/public
。