日期:2014-05-16 浏览次数:20680 次
目前,Apache和PHP均未出现官方的64位版本。
Apache?64位:
http://www.blackdot.be/?inc=apache/binaries
PHP?64位:
http://www.ubv.cn/custom/file_download/php-5.2.5-x64-2007-11-12.zip
MySQL?64位:
http://dev.mysql.com/downloads/mysql/
1.?解压
将下载的httpd-2.2.17-win64.rar压缩包解压到某一目录下,如D:\Apache2.2
2.?编辑配置文件D:\Apache2.2\conf\httpd.conf作如下修改【注意路径中必须使用左斜杠】:
ServerRoot?"/httpd-2.2-x64" 改为
ServerRoot?"D:/Apache2.2"
?
Listen?80 改为
Listen?8080 #?端口,若已开启IIS,则80端口就不能使用了
?
DocumentRoot?"/httpd-2.2-x64/htdocs" 改为
DocumentRoot?"D:/Apache2.2/htdocs" #?放置网站文件的路径
?
DirectoryIndex?index.html 改为
DirectoryIndex?index.html?index.htm?index.php? #?加入index.php,PHP的默认页
?