如何检查在 apache 中启用mod_headers和mod_expires模块

我想检查服务器中是否启用了mod_headers和mod_expires模块

有没有办法使用一些php函数列出apache启用/禁用的模块,就像我们用phpinfo();函数列出php信息一样?


答案 1

以上所有答案都是错误的。请改用:

apachectl -t -D DUMP_MODULES

apachectl -M


答案 2

在 Debian 上:

user@machine:~$ /usr/sbin/apache2 -l

大多数 GNU/Linux 发行版:

user@machine:~$ /usr/sbin/httpd -l

Ubuntu:

user@machine:~$ ls /etc/apache2/mods-enabled

在 Mac OSX 上:

user@mymac:~$ httpd -l

在 Win 7(64 位)上:

C:\Users\myuser>"\Program Files (x86)\Apache Software Foundation\Apache2.2\bin\httpd.exe" -l

从除 Windows 之外的所有终端窗口中尝试这些命令,Windows 将使用 CMD。


推荐