评论

收藏

[IIS] windows下apache+php+mysql 环境配置方法

web服务器 web服务器 发布于:2021-11-03 16:04 | 阅读数:491 | 评论:0

一 准备
1 下载apache https://httpd.apache.org/download.cgi#apache24 httpd-2.2.22-win32-x86-openssl-0.9.8t.msi

openssl表示带有openssl模块,利用openssl可给Apache配置SSL安全链接

2 下载php https://windows.php.net/downloads/releases/archives/ php-5.3.5-Win32-VC6-x86.zip

下载vc6版本
VC6:legacy Visual Studio 6 compiler,就是使用这个编译器编译的。

VC9:the Visual Studio 2008 compiler,就是用微软的VS编辑器编译的。

3 下载mysql https://mysql.llarian.net/Downloads/MySQL-5.5/mysql-5.5.23-winx64.msi

二 安装
1 apache 比较简单,一路next完成.
DSC0000.png

浏览器验证,出现一下页面,成功
DSC0001.png

2 php安装
下载zip包,直接解压到一个目录,目录重命名为php
DSC0002.png

3 mysql

三 配置
php配置
php.ini-development 文件重命名为 php.ini
指定PHP扩展包的具体目录,以便调用相应的DLL文件
; Directory in which the loadable extensions (modules) reside. 
; https://php.net/extension-dir 
; extension_dir = "./" 
; On windows: 
; extension_dir = "ext"
修改为
; Directory in which the loadable extensions (modules) reside. 
; https://php.net/extension-dir 
; extension_dir = "./" 
; On windows: 
extension_dir = "D:/servers/php/ext"
去掉以下配置注释,支持mysql
extension=php_curl.dll 
extension=php_gd2.dll 
extension=php_mysql.dll 
extension=php_pdo_mysql.dll 
extension=php_pdo_odbc.dll
支持session
session.save_path = "e:/temp"
上传文件目录配置
upload_tmp_dir ="e:/temp"
时区配置
date.timezone =Asia/Shanghai

apache配置
在#LoadModule vhost_alias_module modules/mod_vhost_alias.so下添加
LoadModule php5_module "e:/servers/php/php5apache2_2.dll" 
PHPIniDir "e:/servers/php" 
AddType application/x-httpd-php .php .html .htm
web主目录修改
DocumentRoot "D:/servers/Apache2.2/htdocs"
改为
DocumentRoot "D:/servers/phpweb"
<Directory "D:/servers/Apache2.2/htdocs">
改为
<Directory "D:/phpweb">
<IfModule dir_module> 
DirectoryIndex index.html 
</IfModule>
改为
<IfModule dir_module> 
DirectoryIndex index.php index.html 
</IfModule>
重启apache

mysql配置

四 测试
建立phpweb目录 D:\servers\phpweb

创建测试文件 index.php
<?php 
phpinfo(); 
?>
浏览:https://localhost
显示如下信息,说明配置成功:
DSC0003.png

创建mysql连接测试文件
<?php 
$connect=mysql_connect("10.71.196.147","user",""); 
if(!$connect) echo "Mysql Connect Error!"; 
else echo "mysql 连接成功"; 
mysql_close(); 
?>
浏览:https://localhost/mysqltest.php 测试mysql连接
关注下面的标签,发现更多相似文章