LAMP 搭建

httpd-2.4.12http://www.iyunv.com/thread-74903-1-1.html

 

编辑 /etc/httpd/httpd.conf 文件     
   
找到:
    AddType  application/x-compress .Z
    AddType application/x-gzip .gz .tgz
   
在后面添加:
    AddType application/x-httpd-php .php
(使Apcche支持PHP
    AddType application/x-httpd-php-source .php5   
   
找到:
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>
   
添加:
    <IfModule dir_module>
    DirectoryIndex index.html index.php
    </IfModule>    
   
找到:
   
ServerName www.example.com:80
   
修改为:
    ServerName 127.0.0.1:80
或者ServerName localhost:80
   
记得要去掉前面的

 

关闭SELINUX
vi /etc/selinux/config
#SELINUX=enforcing #
注释掉
#SELINUXTYPE=targeted #
注释掉
SELINUX=disabled #
增加

:wq! #
保存退出
setenforce 0 #
使配置立即生效

 

MySQL5.6.21+PHP5.6.3: http://www.iyunv.com/thread-85033-1-1.html

编译安装libgd-2.1.0时注意安装 fontconfig fontconfig-devel

编译安装php-5.6.3时注意安装libxml2 libxml2-devel

你可能感兴趣的:(lamp)