Httpd – What should a POST request in the Apache access log look like

apache-2.2httpd

I'm having a difficult time with some incoming requests – they don't seem to be served properly for a particular equest. When I check the apache access log it looks like this:

[09/Nov/2011:23:43:00 +0000] "POST https://www.example.com/foursquare/push HTTP/1.1" 302 -

Does this indicate something is wrong? Other post requests for the same resource (say when I access it directly via a browser) look like this:

[09/Nov/2011:23:42:43 +0000] "POST /foursquare/push HTTP/1.1" 200 75

I don't know enough to understand the difference — hoping someone could explain a bit.

Best Answer

[09/Nov/2011:23:43:00 +0000] "POST https://www.example.com/foursquare/push HTTP/1.1" 302 -

The main difference there, that I would look really closely at is the HTTP response code. A response code of 302 is an HTTP redirect.