Answers:
确保已mod_status.so
在apache模块中加载了这些内容,然后将以上内容添加到httpd.conf中:
# Uncomment the following lines to enable mod_status support:
#
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from YOUR_IP_HERE
</Location>
这将使您能够查看http服务器内正在使用的所有页面加载域。
要访问它,请使用http:// your_ip / server-status,只有在处定义的ip Allow from YOUR_IP_HERE
才能查看它。
Allow from localhost
,因此以后可以通过lynx http://localhost/server-status
控制台检查该信息。