构建apache 1.3模块(特别是mod_rewrite和mod_alias)

时间:2013-03-04 12:36:10

标签: apache compilation apache-modules

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

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

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

1 个答案:

答案 0 :(得分:2)

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

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

有关apache附带的模块的完整列表,请查看configure help

./configure --help

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