0545-配置apache实现与php的整合

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0545-配置apache实现与php的整合相关的知识,希望对你有一定的参考价值。

整合

###########接下来配置apache httpd.conf来支持php####
[[email protected] php-5.3.27]# cd /application/apache/conf/
[[email protected] conf]# vi httpd.conf
在大概318 319行的下面新增320行、321号的内容如下所示
    318     AddType application/x-compress .Z
    319     AddType application/x-gzip .gz .tgz
    320 AddType application/x-httpd-php .php .phtml
    321 AddType application/x-httpd-php-source .phps
通过搜索/DirectoryIndex,在168行的DirectoryIndex index.html修改为DirectoryIndex index.php index.html
在67行下增加:
User www
Group www
建立用户:
然后检查语法
[[email protected] conf]# ../bin/apachectl -t
Syntax OK
[[email protected] conf]# ../bin/apachectl graceful
httpd not running, trying to start
[[email protected] conf]# ../bin/apachectl start
httpd (pid 1838) already running
[[email protected] conf]# ../bin/apachectl graceful


本文出自 “sandshell” 博客,请务必保留此出处http://sandshell.blog.51cto.com/9055959/1960324

以上是关于0545-配置apache实现与php的整合的主要内容,如果未能解决你的问题,请参考以下文章

Apache与php的整合(经典版),花了一天去配置成功经验

PHP+apache+mysql+phpmyadmin安装配置整合

apache+mysql+php,安装整合配置。

apache 2.4 解压版 与 PHP解压版 的安装配置

LAMP_03_Win下Apache+PHP+MySQL整合

Apache2.2+Tomcat7.0整合配置详解