Linux配置web服务器笔记(2)

  2.Apache And PHP的配置过程

  [root@mail web]# tar zxvf httpd-2.0.50.tar.gz

  [root@mail web]# cd httpd-2.0.50

  [root@mail web]# cd httpd-2.0.50

  [root@mail httpd-2.0.50]# ./configure --prefix=/usr/local/apache2 --enable-module=so

  [root@mail httpd-2.0.50]# make

  [root@mail httpd-2.0.50]# make install

  [root@mail httpd-2.0.50]# cd ..

  [root@mail web]# tar zxvf php-5.0.0.tar.gz #安装配置PHP

  [root@mail web]# tar zxvf php-5.0.0.tar.gz

  [root@mail web]# cd php-5.0.0

  [root@mail php-5.0.0]# ./configure --enable-track-vars --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache2/bin/apxs --disable-libxml --disable-dom --disable-simplelxml --enable-soap --enable-xml

#因为装的Apache是比较高的版本,所以--with-apx这项要改为--with-apxs2 ,而且PHP5增加了很多扩展特性,所以一定要加上,不然会报错。

  [root@mail php-5.0.0]# make

  [root@mail php-5.0.0]# make install

  [root@mail php-5.0.0]# cp php.ini-dist /usr/local/lib/php.ini #拷贝这个文件到/usr/loca/lib/目录下并且改名为php.ini

  下面的工作是修改下Apache的配置文件

  [root@mail php-5.0.0]# vi /usr/local/apache2/conf/httpd.conf

  加上这一句:AddType application/x-httpd-php .php

  并且将DirectotyIndex index.html index.html.var修改为

  DirectoryIndex index.php index.html index.htm

  编辑"/usr/local/lib/php.ini"文件。把OFF改为ON

  register_globals=on

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wypsyg.html