0

在调试网站(例如使用 Wicket 开发)时,可以使用什么客户端工具来查看网络服务器的确切响应(例如 301 或 302)?

4

1 回答 1

0

use apt-get or similar to install wget and then do

wget -S http://localhost:8090

Where "localhost:8090" is the url path to the site To see all headers from the GET request. wget also has options that support POST requests

Alternatively use a browser with firebug to see the response codes

于 2013-04-13T13:38:13.360 回答