参考:
Express URL跳转(重定向)的实现:res.location()与res.redirect()
一 方式1
index.js
var http = require(‘http‘); var server = http.createServer(function (req, res) { res.writeHead(301, {‘Location‘: ‘http://itbilu.com/‘}); console.log(res._header); res.end(); }); server.listen(3000);
浏览器打开http://127.0.0.1:3000,页面跳转到http://itbilu.com。
一 方式2
index.js
var http = require(‘http‘); var server = http.createServer(function (req, res) { res.redirect(‘http://itbilu.com/‘);
//res.redirect(301,‘http://itbilu.com/‘);
res.end(); }); server.listen(3000);
res.redirect更简便,二者区别?
时间: 2024-10-20 01:19:43