Heim  >  Artikel  >  php教程  >  Windows安装Apache2.4和PHP5.6

Windows安装Apache2.4和PHP5.6

WBOY
WBOYOriginal
2016-06-06 19:36:12989Durchsuche

VC11 下载 安装 http://www.microsoft.com/en-us/download/details.aspx?id=30679 ================= PHP(5.6) VC11 x86 Thread Safe php-5.6.4-Win32-VC11-x86.zip 下载地址:http://windows.php.net/download/ 解压并建立php.ini文件 ================= Ap


VC11 下载安装
http://www.microsoft.com/en-us/download/details.aspx?id=30679

=================

PHP(5.6) VC11 x86 Thread Safe
php-5.6.4-Win32-VC11-x86.zip

下载地址:http://windows.php.net/download/

解压并建立php.ini文件

=================

Apache(2.4)
httpd-2.4.10-win32-VC11.zip

下载地址:http://www.apachelounge.com/download/
手册下载:http://mirror.bit.edu.cn/apache/httpd/docs/

解压,示例目录(E:/WAMP)

修改主配置文件:conf/http.conf

ServerRoot "E:/WAMP/Apache"
ServerName desktop
DocumentRoot "E:/WWW"

DirectoryIndex index.html index.php

Include conf/extra/httpd-vhosts.conf

#关联PHP
LoadModule php5_module E:/WAMP/PHP/php5apache2_4.dll
AddType application/x-httpd-php .php
PHPIniDir "E:/WAMP/PHP"

修改虚拟主机配置文件:conf/extra/httpd-vhosts.conf

<virtualhost>
  ServerName desktop
  DocumentRoot "C:/Users/Administrator/Desktop"
  <directory>
    Options Indexes FollowSymLinks
    AllowOverride FileInfo
  </directory>
</virtualhost>

 

添加系统服务:httpd.exe -k install -n "Apache24"
卸载系统服务:httpd.exe -k uninstall -n "Apache24"

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn