apache 支持 php5 的配置方法
更新时间:2010年03月18日 23:29:14 作者:
httpd.conf下让apache 支持 php5 的配置
1.下载apache安装包,并执行安装。
2.下载php5的zip包,并解压到c:\php
3.修改apache的配置文件httpd.conf,添加以下:
#load the php main library to avoid dll hell
Loadfile "C:\php\php5ts.dll"
#load the sapi so that apache can use php
LoadModule php5_module "C:\php\php5apache2_2.dll"
#set the php.ini location so that you don't have to waste time guessing where it is
PHPIniDir "C:\php"
#Hook the php file extensions, notice that Addtype is NOT USED, since that's just stupid
AddHandler application/x-httpd-php .php
AddHandler application/x-httpd-php-source .phps
4.如果出错,则将php目录下的dll 复制到c:\windows\system32目录。
2.下载php5的zip包,并解压到c:\php
3.修改apache的配置文件httpd.conf,添加以下:
复制代码 代码如下:
#load the php main library to avoid dll hell
Loadfile "C:\php\php5ts.dll"
#load the sapi so that apache can use php
LoadModule php5_module "C:\php\php5apache2_2.dll"
#set the php.ini location so that you don't have to waste time guessing where it is
PHPIniDir "C:\php"
#Hook the php file extensions, notice that Addtype is NOT USED, since that's just stupid
AddHandler application/x-httpd-php .php
AddHandler application/x-httpd-php-source .phps
4.如果出错,则将php目录下的dll 复制到c:\windows\system32目录。
您可能感兴趣的文章:
- CentOS 6.4安装配置LAMP服务器(Apache+PHP5+MySQL)
- Centos搭建PHP5.3.8+Nginx1.0.9+Mysql5.5.17详细配置
- 关于nginx+php5.3.8+eclipse3.7工作空间的配置方法
- php5 apache 2.2 webservice 创建与配置(java)
- Apache2.2.16+PHP5.3.3+MySQL5.1.49的配置方法
- Windows下Nginx + PHP5 的安装与配置方法
- Windows下Nginx+PHP5的安装与配置方法
- apache Php5配置方法
- IIS 环境下配置PHP5+MySql+PHPMyAdmin
- 安装apache2.2.22配置php5.4(具体操作步骤)
相关文章
在CentOS VPS上通过SSH安装 MySQL的方法图解
这篇文章主要介绍了在CentOS VPS上通过SSH安装 MySQL,需要的朋友可以参考下2018-12-12
最新评论