首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

apache+php 配备

2012-12-24 
apache+php 配置本文配置的条件为:第一,正确安装Apache第二,正确安装php?配置php打开php.ini定义扩展包ext

apache+php 配置

本文配置的条件为:

第一,正确安装Apache

第二,正确安装php

?

配置php

打开php.ini

定义扩展包

extension_dir = "./ext"

打开必要的扩展包

extension=php_curl.dll

extension=php_gd2.dll

extension=php_mbstring.dll

extension=php_mysql.dll

extension=php_mysqli.dll

extension=php_pdo_mysql.dll

extension=php_xmlrpc.dll

?

配置apache

打开conf/httpd.conf

?

配置php模块

LoadModule php5_module D:/Software/Service/php/php5apache2_2.dll

PHPIniDir "D:/Software/Service/php"

?

配置主目录

DocumentRoot "D:/Software/Service/wwwroot"

<Directory "D:/Software/Service/wwwroot">

?

添加支持类型

AddType application/x-httpd-php .php

AddType application/x-httpd-php .html

?

添加首页支持的文件

DirectoryIndex index.php index.html

?

热点排行