安装与配置PHP
/software/php-3.0.14-win32.zip
安装于c:\php3
配置:把c:\php3\php3.ini-inst文件copy为php3.ini并修改
设apache服务器的主目录 doc_root=C:\apache\htdocs
extension_dir=c:\php3
将php3.ini copy到c:\windows下
让apache和php一起工作
找到httpd.conf中<directory "xxxx">改为
<directory "c:/php3">
AllowOverride None
Options None
</directory>
并在文件末尾加上几句:
ScriptAlias /php3/ "c:/php3山/"
AddType application\x-httpd-php3 .php3 .php .phtml
Action application/x-httpd-php3 "/php3/php.exe"