原文: http://www.cnblogs.com/xyxiong/archive/2011/05/13/2045579.html
首先下載相關安裝檔案,地址如下:
PHP http://windows.php.net/download/
apache http://archive.apache.org/dist/httpd/binaries/win32/apache_2.2.9-win32-x86-no_ssl-r2.msi
mysql http://dev.mysql.com/downloads/mysql/
phpmyadmin3.3.10 FINA http://www.crsky.com/soft/4190.html
我的安裝目錄如下:
PHP D:/php
apache D:/apache
mysql D:/mysql
phpmyadmin D:/www/pma
網站程式目錄: D:/www
session存放目錄 D:\session_tmp
(1) 安裝apache
apache安裝只要一步一步按著預設的來安裝即可,相關安裝路徑自己可以在安裝過程中選擇
安裝完畢後,在IE地址欄打“http://127.0.0.1”,點“轉到”,就 "It work!",表示Apache伺服器已安裝成功。
安裝好後,開啟 D:/apache/httpd.conf
1. 尋找關鍵字“DocumentRoot” 修改為 DocumentRoot "D:/www"
2. 尋找關鍵字
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
修改為
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
3.尋找關鍵字
<Directory />
Options FollowSymLinks
AllowOverride None
Order Deny
</Directory>
修改為
<Directory />
Options FollowSymLinks
AllowOverride None
allow from all
</Directory>
4. 修改 ServerRoot "D:/apache"
(2) 安裝php
1. 解壓PHP進相關目錄,修改 php.ini-dist為php.ini
2. 修改 doc_root為doc_root = "D:\www" ,去除前面的; 這個是網站目錄
3. 修改 extension_dir = "D:\php\ext" 去除前面的;
4. 修改 session.save_path = "D:\session_tmp"
5. 根據自己選擇 修改 extension擴充 列表開啟狀況
修改 apache設定檔httpd.conf
1、 新加
LoadModule php5_module D:/php/php5apache2_2.dll
PHPIniDir "D:/php"
2.新加
AddType application/x-httpd-php .php
AddType application/x-httpd-php .html
(3)安裝MYSQL
安裝即可
(4)安裝phpmyadmin
1. 將phpmyadmin解壓到D:/www/pma phpmyadmin一定要放在網站目錄下
2.修改 D:/www/pma/libraries/config.default.php
$cfg['PmaAbsoluteUri'] = "http:/127.0.0.1/pma/';
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456';
$cfg['DefaultLang'] = 'en-utf-8';
$cfg['DefaultConnectionCollation'] = 'utf8_general_ci';
首先下載相關安裝檔案,地址如下:
PHP http://windows.php.net/download/
apache http://archive.apache.org/dist/httpd/binaries/win32/apache_2.2.9-win32-x86-no_ssl-r2.msi
mysql http://dev.mysql.com/downloads/mysql/
phpmyadmin3.3.10 FINA http://www.crsky.com/soft/4190.html
我的安裝目錄如下:
PHP D:/php
apache D:/apache
mysql D:/mysql
phpmyadmin D:/www/pma
網站程式目錄: D:/www
session存放目錄 D:\session_tmp
(1) 安裝apache
apache安裝只要一步一步按著預設的來安裝即可,相關安裝路徑自己可以在安裝過程中選擇
安裝完畢後,在IE地址欄打“http://127.0.0.1”,點“轉到”,就 "It work!",表示Apache伺服器已安裝成功。
安裝好後,開啟 D:/apache/httpd.conf
1. 尋找關鍵字“DocumentRoot” 修改為 DocumentRoot "D:/www"
2. 尋找關鍵字
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
修改為
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
3.尋找關鍵字
<Directory />
Options FollowSymLinks
AllowOverride None
Order Deny
</Directory>
修改為
<Directory />
Options FollowSymLinks
AllowOverride None
allow from all
</Directory>
4. 修改 ServerRoot "D:/apache"
(2) 安裝php
1. 解壓PHP進相關目錄,修改 php.ini-dist為php.ini
2. 修改 doc_root為doc_root = "D:\www" ,去除前面的; 這個是網站目錄
3. 修改 extension_dir = "D:\php\ext" 去除前面的;
4. 修改 session.save_path = "D:\session_tmp"
5. 根據自己選擇 修改 extension擴充 列表開啟狀況
修改 apache設定檔httpd.conf
1、 新加
LoadModule php5_module D:/php/php5apache2_2.dll
PHPIniDir "D:/php"
2.新加
AddType application/x-httpd-php .php
AddType application/x-httpd-php .html
(3)安裝MYSQL
安裝即可
(4)安裝phpmyadmin
1. 將phpmyadmin解壓到D:/www/pma phpmyadmin一定要放在網站目錄下
2.修改 D:/www/pma/libraries/config.default.php
$cfg['PmaAbsoluteUri'] = "http:/127.0.0.1/pma/';
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456';
$cfg['DefaultLang'] = 'en-utf-8';
$cfg['DefaultConnectionCollation'] = 'utf8_general_ci';
首先下載相關安裝檔案,地址如下:
PHP http://windows.php.net/download/
apache http://archive.apache.org/dist/httpd/binaries/win32/apache_2.2.9-win32-x86-no_ssl-r2.msi
mysql http://dev.mysql.com/downloads/mysql/
phpmyadmin3.3.10 FINA http://www.crsky.com/soft/4190.html
我的安裝目錄如下:
PHP D:/php
apache D:/apache
mysql D:/mysql
phpmyadmin D:/www/pma
網站程式目錄: D:/www
session存放目錄 D:\session_tmp
(1) 安裝apache
apache安裝只要一步一步按著預設的來安裝即可,相關安裝路徑自己可以在安裝過程中選擇
安裝完畢後,在IE地址欄打“http://127.0.0.1”,點“轉到”,就 "It work!",表示Apache伺服器已安裝成功。
安裝好後,開啟 D:/apache/httpd.conf
1. 尋找關鍵字“DocumentRoot” 修改為 DocumentRoot "D:/www"
2. 尋找關鍵字
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
修改為
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
3.尋找關鍵字
<Directory />
Options FollowSymLinks
AllowOverride None
Order Deny
</Directory>
修改為
<Directory />
Options FollowSymLinks
AllowOverride None
allow from all
</Directory>
4. 修改 ServerRoot "D:/apache"
(2) 安裝php
1. 解壓PHP進相關目錄,修改 php.ini-dist為php.ini
2. 修改 doc_root為doc_root = "D:\www" ,去除前面的; 這個是網站目錄
3. 修改 extension_dir = "D:\php\ext" 去除前面的;
4. 修改 session.save_path = "D:\session_tmp"
5. 根據自己選擇 修改 extension擴充 列表開啟狀況
修改 apache設定檔httpd.conf
1、 新加
LoadModule php5_module D:/php/php5apache2_2.dll
PHPIniDir "D:/php"
2.新加
AddType application/x-httpd-php .php
AddType application/x-httpd-php .html
(3)安裝MYSQL
安裝即可
(4)安裝phpmyadmin
1. 將phpmyadmin解壓到D:/www/pma phpmyadmin一定要放在網站目錄下
2.修改 D:/www/pma/libraries/config.default.php
$cfg['PmaAbsoluteUri'] = "http:/127.0.0.1/pma/';
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456';
$cfg['DefaultLang'] = 'en-utf-8';
$cfg['DefaultConnectionCollation'] = 'utf8_general_ci';