Home >Backend Development >PHP Tutorial >搭建PHP开发环境

搭建PHP开发环境

WBOY
WBOYOriginal
2016-06-23 14:28:50796browse

第一步,装apache

下载apache 的httpd-2.0.64-win32-x86-openssl-0.9.8o.msi到本地。 本来打算下新版2.2的,但是看页面上显示的是2.0的模块在2.2下可能会失效,所以就下得2.0的版本

然后配置文件httpd.conf

配置 DocumentRoot的为 我们网站的根目录。   DocumentRoot "E:/apache_Dir/docRoot"

配置 DirectoryIndex 就是apache先加载的网页文件。 DirectoryIndex homepage.php index.html index.html.var

 

第二步 安装PHP

从网站下得时php-5.2.17-Win32-VC6-x86.zip这个版本

然后还是修改apache的 httpd.conf配置文件

将php以模块的形式注册近apache 在173行附近

LoadModule php5_module E:/apache_Dir/php/php5apache2.dll
PHPIniDir  "E:/apache_Dir/php"

首先在764行附近添加如下的类型映射

AddType application/x-httpd-php .php
AddType application/x-httpd-php .html

完成,我的php文件放置在E:/apache_Dir/docRoot目录下,以homepage.php命名

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:CentOS6 编译PHP 5.3.8Next article:安装PHP的步骤