如何在没有快递的情况下重定向到另一个页面

时间:2014-01-17 17:12:57

标签: node.js http redirect

服务器的代码在这里:https://github.com/Bubblery/server.js/blob/master/.gitignore

而在103.我有一个条件。然后我想重定向另一页。就像“index.html”一样。

1 个答案:

答案 0 :(得分:0)

您所在的展示位置reqres可用,因此只需结束并输出重定向标题

if (results.length > 0) {
    results.forEach(function (key) {
        if (key.password != userParsed.password) {
            res.writeHead(301, {
                'Location': 'your/path/file.html'
            });
            res.end();
        } else {
            console.log(key.password);
        }
    });
}