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] +
