微軟全新操作系統(tǒng)Windows10在190個(gè)國家和地區(qū)正式同步上市,正版Windows7、Windows8.1用戶均可在一年內(nèi)免費(fèi)升級,。介紹一下在升級后的Windwos10系統(tǒng)上安裝及配置Apache及PHP步驟(感覺和Windows7、8沒有差別),。 首先下載符合系統(tǒng)位數(shù)的Apache和PHP
安裝并配置Apache
1) 下載回來的是解壓文件,,解壓好放到要安裝的位置,。 2) 打開Apache24\conf下httpd.conf 文件,,修改以下關(guān)鍵位置,用記事本打開即可,。 ServerRoot修改為Apache程序的位置,。 ServerRoot "c:/Apache24"; <- 修改前 ServerRoot “D:/Apache24”,; <- 修改后 修改Apache默認(rèn)的網(wǎng)站的根目錄,。 DocumentRoot "c:/Apache24/htdocs"; <- 修改前 DocumentRoot "d:/Apache24/htdocs",; <- 修改后 修改根目錄的選項(xiàng),。 修改前 <Directory "c:/Apache24/htdocs"> Options Indexes FollowSymLinks AllowOverride Require all granted </Directory> 修改后 <Directory "d:/Apache24/htdocs"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> 啟動(dòng)Apache1) 點(diǎn)擊左下角菜單后面的聊天框輸入“cmd”,啟動(dòng)“命令提示窗”,。 2) 輸入 “d:” 回車 ,,輸入“cd Apache24\bin”回車,輸入“httpd”,,如果沒有任何提示表示啟動(dòng)成功,。 3) 打開瀏覽器輸入“http://localhost/”進(jìn)行測試,如下圖顯示證明配置成功,。 安裝并配置PHP
1) 下載回來的是解壓文件,,解壓好放到要安裝的位置。 2) 復(fù)制份php.ini-development,,并改名為php.ini,。 3) 打開Apache24\conf下httpd.conf,在最后加上 # php5 support LoadModule php5_module "d:/php/php5apache2_4.dll" AddHandler application/x-httpd-php .php PHPIniDir "d:/php/" 4) 重啟 Apache 服務(wù)器,。 5) 刪除Apache24/htdocs中其他文件,,新建一個(gè)index.php,內(nèi)容為保存,,訪問出現(xiàn)php的信息就說明php已經(jīng)成功安裝,。 |
|