Home > php教程 > php手册 > body text

安装 Apache 2.4 和 PHP 5.4 过程

WBOY
Release: 2016-06-06 19:50:44
Original
1141 people have browsed it

一、下载地址 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"
Copy after login

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"
Copy after login

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

ServerAdmin info@yoursite.com
Copy after login

1.5 修改文档根目录

DocumentRoot "E:/www"
<directory></directory>
Copy after login

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

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

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

AllowOverride All
Copy after login

1.8 添加 index.php 到 index 目录中

DirectoryIndex index.html index.php
Copy after login

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

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

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
Copy after login

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

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

1.5 最后设置下时区

<span>date</span>.timezone = PRC
Copy after login

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

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

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!