tags:

views:

71

answers:

1

If I request a page like https://www.example.com/?pippo=123, what would appear in the apache logs? I know that POST parameters are not logged, but for GET ones?

Tkz!

+2  A: 

The log entry will look like this:

123.239.125.171 - - [29/Apr/2010:13:15:48 +0100] "GET /?pippo=123 HTTP/1.1" 200 8057 

If you requested a specific page:

123.239.125.171 - - [29/Apr/2010:13:15:48 +0100] "GET /myPage.php?pippo=123 HTTP/1.1" 200 8057 
Andy