2

我正在使用带有express的nodejs。

对于我做的一些网址:res.redirect(new_url, 302);并且重定向工作正常。

问题是服务器发送的消息是“已临时移动。重定向到http://mysite.com/ ”,我想将其更改为简单的正确 html,就像 google 一样。尝试向 www.google.com ( curl www.google.com) 发出请求,您将获得:

<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="http://www.google.co.il/">here</A>.
</BODY></HTML>

我什至找不到文本的来源。我该如何更改它,正确的方法是什么?

先感谢您!

4

1 回答 1

4

res.writeHead与标题一起使用,然后res.end与内容一起使用(即 HTML):

res.writeHead(302, {'Location': new_url});
res.end('<html>...</html>');

谢谢。

于 2013-03-17T15:33:12.223 回答