WEB开发网
开发学院服务器WEB服务器综合平台 LAMP系列:构建httpd网站服务器 阅读

LAMP系列:构建httpd网站服务器

 2012-05-16 10:51:57 来源:WEB开发网   
核心提示:2.解包httpd源码文件,并对其依次进行配置、编译、安装,LAMP系列:构建httpd网站服务器(3),注意正确添加配置选项,# tar zxf httpd-2.2.17.tar.gz# cd httpd-2.2.17# ./configure --prefix=/usr/local/httpd --enable-s

2.解包httpd源码文件,并对其依次进行配置、编译、安装。注意正确添加配置选项。

  1. # tar zxf httpd-2.2.17.tar.gz 
  2. # cd httpd-2.2.17 
  3. # ./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi  
  4. //--prefix:指定将httpd服务程序安装到哪个目录。  
  5. //--enable-so:启用动态加载模块支持,使httpd具备进一步扩展功能的能力。  
  6. //--enable-rewrite:启用网页地址重写功能,用于网站优化及目录迁移维护。  
  7. //--enable-charset-lite:启动字符集支持,以便支持使用各种字符集编码的网页。  
  8. //--enable-cgi:启用CGI脚本程序支持,便于扩展网站的应用访问能力。  
  9. # make && make install 

上一页  1 2 3 4 5 6 7 8  下一页

Tags:LAMP 系列 构建

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接