Home >php教程 >php手册 >Apache1.3.x+PHP4 Beta3在Windows 9x/NT下的安装与配置

Apache1.3.x+PHP4 Beta3在Windows 9x/NT下的安装与配置

WBOY
WBOYOriginal
2016-06-13 10:13:221338browse

一、安装Apache    
到发布Apache的官方站点htp://www.apache.org/dist,将apache_1_3_x.win32.exe下载到你的本机上并将其运行安装到c:Apache。如果安装没出什么错的话,安装完毕之后,Apache就可以开始使用了。其中在Apache的安装目录下面有很多readme文件可供参考,但仅有一个文件是讲Win32平台的,包括Window 9x和Windows NT。
 
二、安装PHP    
到PHP的官方发布站点上,选择一个镜像,找到下载区域,选择“Source code and Windows distribution”,下载“Windows Binary”。你只须要将当下来的文件解压到你喜欢的目录中,如C:PHP4B3.我推荐用版本号作为目录名,这样将来你试用更新版本时,无须删掉老的版本。在Windows 95/97下安装PHP4 Beta,需要有DCOM的支持。如果你的机器上未装, 到这里去下载一份。
 
三、配置PHP    
与PHP一起分发的文件包里有一个PHP的主要配置文件PHP.INI-dist。将它拷贝到你的Windows系统目录(Windows 9x的Windows或Windows NT的WinNT目录),并且改名为PHP.INI。需要对此文件作适当的修改,最主要的事情是加入一些可能要用到的模块,象加入MySQL的支持等。在PHP.INI文件中找到“Dynamic Extensions”一栏:
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;    
修改 ;extension=php_mysql.dll    
除去前边的";"号    
在特定情况下,如果你想要用的DLL文件不在这个列表中,只需要简单地加上一行,如: “extension=mydll.dll”。这样,PHP就配置好了。
 
四、让Apache与PHP一起工作    
找到第一节里你安装Apache的目录,用你喜欢的文件编辑器打开.confhttpd.conf文件,在本例中是c:Apacheconfhttpd.conf(这个是APACHE的最主要的配置文件)。要让Apache与PHP一起工作,你只要加入几行即可,如下:    
ScriptAlias /php4b3/ "C:/PHP4B3/"    
AddType application/x-httpd-php3 .php3    
AddType application/x-httpd-php3 .php    
AddType application/x-httpd-php3 .phtml    
Action application/x-httpd-php3 "/php4b3/php.exe"    

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
Previous article:Apache Reference Manual (12)Next article:APACHE(3)