How can I display full urls in Apache mod_status output?
Solution 1:
as Apache docs said :
Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars. ths Default value is Off.
just change the value to On. the sample config like this:
<IfModule mod_status.c>
<Location /server-status>
SetHandler server-status
</Location>
# Keep track of extended status information for each request
ExtendedStatus On
SeeRequestTail On
</IfModule>