标签:style blog http io os 使用 ar for 文件
环境搭建
第一步:
64位系统下的 apache、php 、mysql软件下载
apache2.4
http://www.apachelounge.com/download/win64/
php5.5
就这个版本
mysql
http://www.mysql.com/downloads/mysql/
这个是安装版当然你下载zip包的也可以
第二步:
Apache2.4 要VC10库支持
Microsoft Visual C++ 2010 SP1 Redistributable Package (x64)
PHP5.5要VC11库支持
Visual C++ Redistributable for Visual Studio 2012 Update 1
如果你的操作系统没有可以到Microsoft官网下载安装
安装软件
php、apache 直接解压到D盘,根据安装提示安装好mysql
(安装软件应该都会)
第三步:
1.配置
打开D:\Apache24\conf下httpd.conf 文件,用记事本打开查找c:\Apache24 替换 D:\Apache24
将DirectoryIndex index.html改为DirectoryIndex index.html index.php index.htm
并添加
# php5 support
LoadModule php5_module "d:/php/php5apache2_4.dll"
AddHandler application/x-httpd-php .php
# configure the path to php.ini
PHPIniDir "d:/php"
第四步:
测试环境
D:/Apache24/htdocs新建一个index.php,内容为<?php phpinfo(); ?>保存
到D:\Apache24\bin目录,双击 phpd.exe启动apache
打开浏览器访问:http://localhost/index.php
环境搭建ok。
如果你觉得麻烦那就使用集成安装环境:
百度一下头一条就是,然后下载安装就是了。
windows 64位系统下 apache+php+mysql
标签:style blog http io os 使用 ar for 文件
原文地址:http://www.cnblogs.com/tintindeng/p/3971831.html