node.js http-server自定义错误消息



我启动了一个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>

相关内容

  • 没有找到相关文章

最新更新