构建apache 1.3模块(特别是mod_重写和mod_别名)

构建apache 1.3模块(特别是mod_重写和mod_别名),apache,compilation,apache-modules,Apache,Compilation,Apache Modules,出于学习目的,我必须安装ApacheWeb服务器的1.3版本。 问题是我不知道如何构建模块,而且在安装目录中我看不到任何“模块”文件夹 我想用我需要的一些模块重新编译并重新安装服务器,比如mod_rewrite(支持LDAP)和mod_alias…你能告诉我怎么做吗 不幸的是,文档主要针对2.x版本…当您运行/configure时,您可以使用--enable module和enable sahre启用模块,例如: ./configure --enable-module=rewrite --ena

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

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


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

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

./configure --enable-module=rewrite --enable-shared=rewrite
有关apache附带的模块的完整列表,请查看配置帮助

./configure --help
此外,如果您试图在现代linux系统上编译apache,本博客文章提供了一些有用的提示。