我启动了一个node.js http-server-" https://www.npmjs.com/package/package/http-server"如果我在目录中键入一个不存在的文件,那么我要获得浏览器msg:
This localhost page can’t be found
No webpage was found for the web address: http://localhost:8080/foo
Search Google for localhost 8080 foo
HTTP ERROR 404
我的问题:我可以以某种方式自定义此错误msg?
在您的public
目录中创建404.html
文件,并将您要显示为该文件的内容
示例
命令行
# http-server ./public/
./public/404.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404</title>
</head>
<body>
<p>My custom 404 message</p>
</body>
</html>