Heim  >  Artikel  >  php教程  >  安装 Apache 2.4 和 PHP 5.4 过程

安装 Apache 2.4 和 PHP 5.4 过程

WBOY
WBOYOriginal
2016-06-06 19:50:441143Durchsuche

一、下载地址 Apache 5.4 —— httpd-2.4.4-win32.zip PHP 5.4 —— php-5.4.15-Win32-VC9-x86.zip 注意,VC9 线程安全版本中已经包含了 PHP 和 Apache connector DLL,因此无需下载此DLL。 二、配置 1. Apache 使用任意编辑器打开 apache2.4/conf/httpd.con

一、下载地址
Apache 5.4 —— httpd-2.4.4-win32.zip
PHP 5.4 —— php-5.4.15-Win32-VC9-x86.zip
注意,VC9 线程安全版本中已经包含了 PHP 和 Apache connector DLL,因此无需下载此DLL。

二、配置
1. Apache
使用任意编辑器打开 apache2.4/conf/httpd.conf 文件开始配置。
1.1 设置 Apache 位置

ServerRoot "D:/Program Files/apache2.4"

1.2 启用使用的模块
我只去掉了 mod_rewrite 模块的注释。
1.3 在模块内容下增加以下内容

LoadModule php5_module "D:/Program Files/PHP5.4、php5apache2_4.dll"<span>
AddType application</span>/x-httpd-php .<span>php
AddType application</span>/x-httpd-php .<span>html
AddHandler application</span>/x-httpd-php .<span>php
PHPIniDir </span>"D:/Program Files/PHP5.4"

1.4 修改服务器管理员邮件地址

ServerAdmin info@yoursite.com

1.5 修改文档根目录

DocumentRoot "E:/www"
<directory></directory>

1.6 找到一下内容替换实际的路径

ScriptAlias /cgi-bin/ "D:/Program Files/apache2.4/cgi-bin/"
<directory files></directory>

1.7 如果你想启用 .htaccess 请修改 下内容

AllowOverride All

1.8 添加 index.php 到 index 目录中

DirectoryIndex index.html index.php

2. PHP
1.1 重命名 php.ini-development 为 php.ini
1.2 修改扩展路径

extension_dir = "D:/Program Files/PHP5.4/ext"

1.3 取消以下行的注释

extension=php_curl.<span>dll
extension</span>=php_mysql.<span>dll
extension</span>=php_mysqli.<span>dll
extension</span>=php_pdo_mysql.<span>dll
extension</span>=php_soap.dll

1.4 如果你使用 PHP 的邮件功能请修改下面内容

SMTP = smtp.yoursite.<span>com
smtp_port </span>= 25<span>
sendmail_from </span>= youremail@sender.com

1.5 最后设置下时区

<span>date</span>.timezone = PRC

三、安装
需要将 Apache 2.4 的服务安装到系统服务中,开始->运行,输入cmd,然后按行输入:

cd D:/Program Files/apache2.4/<span>bin
</span>httpd.exe -k install -n "Apache24"

编写一个 index.php 文件,内容为 , 启动apache服务,访问以下 http://localhost/吧

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
Vorheriger Artikel:php中getenv()和$Nächster Artikel:PHP CLI模式