Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change 
notification.

The following page has been changed by AskApache:
http://wiki.apache.org/httpd/Recipes/WatchingHttpHeaders

The comment on the change is:
added wireshark details

------------------------------------------------------------------------------
  
  any others?
  
+ 
+ == Wireshark ==
+ [http://wireshark.askapache.com WireShark]
+ 
+ === Show only certain responses ===
+ 
+ 404: page not found
+ {{{http.response.code == 404}}}
+  
+ === 200: OK ===
+ {{{http.response.code == 200}}}
+ 
+ === Show only certain HTTP methods ===
+ {{{http.request.method == "POST" || http.request.method == "PUT"}}}
+ 
+ === Show only filetypes that begin with “text” ===
+ {{{http.content_type[0:4] == "text"}}}
+ 
+ === Show only javascript ===
+ {{{http.content_type contains "javascript"}}}
+ 
+ === Show all http with content-type=”image/(gif|jpeg|png|etc)” ===
+ {{{http.content_type[0:5] == "image"}}}
+ 
+ === Show all http with content-type=”image/gif” ===
+ {{{http.content_type == "image/gif"}}}
+ 
+ === Do not show content http, only headers ===
+ {{{http.response !=0 || http.request.method != "TRACE"}}}
+ 
+ 
[http://www.askapache.com/2007/htaccess/sniff-http-to-debug-apache-htaccess-and-httpdconf.html
 Sniff HTTP to debug Apache]
+ 

Reply via email to