我的代码中有一个简单的重定向:
public ActionResult Redirect()
{
return Redirect("http://url.com");
}
我注意到响应在响应正文中包含以下 html:
HTTP/1.1 302 Found
Cache-Control: private
Content-Type: text/html; charset=utf-8
Location: http://url.com
Server: Microsoft-IIS/7.0
Date: Tue, 24 Jul 2012 18:53:52 GMT
Content-Length: 198
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="http://url.com">here</a>.</h2>
</body></html>
有没有办法从响应正文中删除 html?我希望 Content-Length 为零,因为响应正文中没有任何内容。