我正在使用node.js,我想知道如何显示404.html而不是“404 Not Found”消息。
这是我的server.js:
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = process.argv[2] || 8888;
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname
, filename = path.join(process.cwd(), uri);
path.exists(filename, function(exists) {
if(!exists) {
response.writeHead(404, {"Content-Type": "text/plain"});
response.write("404 Not Found\n");
response.end();
return;
}
if (fs.statSync(filename).isDirectory()) filename += 'public/Index/index.html';
fs.readFile(filename, "binary", function(err, file) {
if(err) {
response.writeHead(500, {"Content-Type": "text/plain"});
response.write(err + "\n");
response.end();
return;
}
response.writeHead(200);
response.write(file, "binary");
response.end();
});
});
}).listen(parseInt(port, 10));
console.log("Static file server running at\n => http://localhost:" + port + "/\nCTRL + C to shutdown");
因为你可以看到它只是一个静态文件服务器而我没有使用express.js或任何东西。
答案 0 :(得分:10)
H i,
在你的404案件中
response.writeHead(404, {"Content-Type": "text/plain"});
response.write("404 Not Found\n");
response.end();
您可以更改为
response.writeHead(404, {"Content-Type": "text/html"});
response.write(HTMLDATA);
response.end();
'HTMLDATA'是HTML字符串或对您收集的文件的引用。
response.writeHead()
始终设置在response.write()
之前。
另请参阅我们已将响应类型设置为“text / html”
http://nodejs.org/api/http.html#http_class_http_serverresponse
答案 1 :(得分:1)
response.writeHead(404, {
'Location': 'your/404/path.html'
//add other headers here...
});
response.end();
或单行
response.redirect('your/404/path.html');
答案 2 :(得分:0)
使用fs.readFile加载404.html并使用response.write
提供var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = process.argv[2] || 8888;
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname
, filename = path.join(process.cwd(), uri);
path.exists(filename, function(exists) {
if(!exists) {
fs.readFile('404.html', "binary", function(err, file) {
if(err) {
response.writeHead(404, {"Content-Type": "text/html"});
response.write("404 Not Found\n");
} else {
response.writeHead(404);
response.write(file, "binary");
}
response.end();
return;
}
}
if (fs.statSync(filename).isDirectory()) filename += 'public/Index/index.html';
fs.readFile(filename, "binary", function(err, file) {
if(err) {
response.writeHead(500, {"Content-Type": "text/plain"});
response.write(err + "\n");
response.end();
return;
}
response.writeHead(200);
response.write(file, "binary");
response.end();
});
});
}).listen(parseInt(port, 10));
console.log("Static file server running at\n => http://localhost:" + port + "/\nCTRL + C to shutdown");`enter code here`
答案 3 :(得分:0)
只做200 ... 读取文件404.html并将其写入响应,只需在writeHead中设置代码404。
答案 4 :(得分:0)
这可能更多是您正在寻找的内容。
fs.readFile('404.html', function(error, data) {
res.writeHead(404, {'content-type': 'text/html'});
res.end(data);
});