如何轻松测试 HTTP 返回码,例如 301 重定向?
例如,如果我想“看看发生了什么”,我可以使用telnet来做这样的事情:
... $远程登录 nytimes.com 80
Trying 199.239.136.200...
Connected to nytimes.com.
Escape character is '^]'.
获取/HTTP/1.0
(进入)
(进入)
HTTP/1.1 200 OK
Server: Sun-ONE-Web-Server/6.1
Date: Mon, 14 Jun 2010 12:18:04 GMT
Content-type: text/html
Set-cookie: RMID=007af83f42dd4c161dfcce7d; expires=Tuesday, 14-Jun-2011 12:18:04 GMT; path=/; domain=.nytimes.com
Set-cookie: adxcs=-; path=/; domain=.nytimes.com
Set-cookie: adxcs=-; path=/; domain=.nytimes.com
Set-cookie: adxcs=-; path=/; domain=.nytimes.com
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Cache-control: no-cache
Pragma: no-cache
Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
...
这是访问相当多的信息的一种简单方法。
但现在我想测试 301 重定向确实是 301 重定向。
我该怎么做?
基本上,我不想获得HTTP/1.1 200 OK ,而是想知道如何获得 301?
我知道我可以在浏览器中输入 URL 的名称并“看到”我被重定向,但我想知道可以使用哪些工具来真正“看到”301 重定向。
顺便说一句,我确实使用 telnet 进行了测试,但是当我输入 www.example.org 时,我将其重定向到 example.org(没有 www),我只能看到“200 OK”,我看不到301。