Linux下配置apache2.2和php5

  apache用的是httpd-2.2.4.tar.gz

  php用的是php-5.2.0.tar.gz

  安装过程可以参照解压包里的install文件

  注意问题

  1、安装php5

  STEP1: ./configure --with-apxs2=/usr/local/apache2/bin/apxs

  蓝色部分一定不要忘记了,否则启动apache可能出现模块不能加载的错误

  2、配置apache虚拟路径,出现forbidden错误

  若虚拟路径设置如下:Alias /test /mnt/WinF/Web

  在其后加入

  <Directory "/mnt/WinF/Web">
  Options Indexes FollowSymLinks
  AllowOverride None
  Order allow,deny
  Allow from all
  </Directory>

  现在就OK了!