1

出于学习目的,我必须安装 1.3 版本的 apache 网络服务器。问题是我不知道如何构建模块,而且在安装目录中我看不到任何“模块”文件夹。

我想用我需要的一些模块重新编译和重新安装服务器,比如 mod_rewrite(支持 LDAP)和 mod_alias...你能告诉我怎么做吗?

不幸的是,文档主要针对 2.x 版本...

4

1 回答 1

2

当您运行 ./configure 时,您可以使用 --enable-module 和 enable-sahre 启用模块,例如:

./configure --enable-module=rewrite --enable-shared=rewrite

有关 apache 附带的模块的完整列表,请查看配置帮助

./configure --help

此外,如果您尝试在现代 linux 系统上编译 apache,这篇博文提供了一些有用的建议。 http://www.cambus.net/compiling-apache-1.3.x-on-modern-linux-distributions/

于 2013-03-20T19:46:52.463 回答