如何在 Apache mod_status 输出中显示完整的 URL?

如何在 Apache mod_status 输出中显示完整的 URL?

有没有办法让完整的 URL 显示在 mod_status 输出页面上?目前,请求在 64 个字符处被截断:

HEAD /w3c-validator/check?uri=http%3A%2F%2Fwww.domain.com%2Fans

我知道有很多查询字符串选项,如?auto、?notable 等,但它们都没有显示完整的 URL(我能看到)。

答案1

正如 Apache 文档所述:

确定是否mod_status显示器前 63 个字符请求或最后 63 个,假设请求本身大于 63 个字符。默认值为离开

只需将值更改为.示例配置如下:

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

相关内容