Home  >  Article  >  Backend Development  >  PHP4.1.0在Windows下的Apache模块方式安装_PHP

PHP4.1.0在Windows下的Apache模块方式安装_PHP

WBOY
WBOYOriginal
2016-06-01 12:35:451420browse

Apache

有些功能(例如用户验证)要求 PHP 必须以 Apache 模块方式安装,
如果你不知道如何安装,那么下面这些就是你需要知道的。

 

节选自 php 的 install.txt

 

首先你需要将 php4ts.dll 拷到 windows/system (对于 Windows 9x/Me)
或者 winnt/system32 (对于 Windows NT/2000) 目录,覆盖之前的文件。
然后将下面两行添加到 Apache 设置文件(httpd.conf)

 

 LoadModule php4_module c:/php/sapi/php4apache.dll
 AddType application/x-httpd-php .php

 

记得要重新启动服务器才能生效,例如
 NET STOP APACHE
接着
 NET START APACHE

 

之后查看 phpinfo(),如果 Server API 显示为 Apache 既已经运行在
模块方式下。

Statement:
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