win7下手动配置apache+ php + mysql 记
本来想学学php,于是就想搭建web服务器和sql环境,结果浪费掉了不少时间。大致的总结下,也算是长个记性。 使用的安装包分别是 httpd-2.2.22-win32-x86-no_ssl .msi , php-5.2.5-Win32.zip 和 mysql-installer-community-5.5.28.3.msi ,很显然用的还算是比较新的安装包。安装apache还是比较顺利的,一路安装下来,默认监听本机所有ip的80端口,当然包括回环地址, 接着解压php到指定文件夹,接着安装mysql,打开安装目录下的httpd.conf文件,做如下调整: ServerRoot "D:/Apache2.2" 服务器安装根目录 DocumentRoot "D:/phpWeb" 修改为自己的网站根目录 # This should be changed to whatever you set DocumentRoot to. <Directory "D:/phpWeb"> 与上一步进行同步修改 # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. <IfModule dir_module> 设置默认的被请求文件 DirectoryIndex index.php index