參照網上其他資料,經過試驗整理
還有php,apache的**,上面有提示要安裝visual c++庫的。
apache2.4.10需要vc11庫支援,visual c++ redistributable for visual studio 2012 update
php-5.5.20需要vc11庫支援,visual c++ redistributable for visual studio 2012 update
2. apache安裝(d盤根目錄下面)
先安裝 vcredist_x64.exe,直接雙擊就行;
開啟d:\apache24\conf 下的httpd.conf檔案,
第37行 serverroot "c:/apache24" 改為 serverroot "d:/apache24";
第209行 serveradmin 設定郵箱,可以不改;
第218行 servername 前面的#號去掉;
第242行 documentroot "c:/apache24/htdocs" 改為 documentroot "d:/apache24/htdocs";
第243行 改為 ;
第276行 directoryindex index.html 改為 directoryindex index.html index.php index.htm;
第359行 scriptalias /cgi-bin/ "c:/apache24/cgi-bin/" 改為 scriptalias /cgi-bin/ "d:/apache24/cgi-bin/";
第375行 scriptalias /cgi-bin/ "c:/apache24/cgi-bin/" 改為 scriptalias /cgi-bin/ "d:/apache24/cgi-bin/";
3.啟動apache
開啟命令提示符操作介面,開始-->執行,輸入"cmd"-->確定;
輸入 d: 回車;
輸入 cd d:\apache24\bin 回車;
輸入 httpd 回車;
如果httpd.conf配置正確的話,輸入httpd回車後是沒有任何提示的。不要關閉命令視窗(關閉命令視窗就是關閉apache),開啟瀏覽器,位址列輸入http://localhost或者 出現「it works」那麼就說明apache已經正確安裝了。
3.將apache加入到系統服務
先關閉httpd命令視窗,否則後面會報錯;
在重新開啟乙個cmd名稱操作介面 (開始-->執行,輸入"cmd"-->確定);
輸入 d: 回車;
輸入 cd d:\apache24\bin 回車;
輸入 httpd.exe -k install -n "servername" 回車,加入服務,servername是服務裡面的名字,可以自定義,例: apache2.4;
如果要解除安裝這個服務,先停止這個服務,然後輸入 httpd.exe -k uninstall -n "servicename" 回車。
以後可以通過apache24\bin資料夾下的apachemonitor.exe來控制這個apache。
至此apache的基本安裝已完成。
CentOS7安裝配置Apache
安裝httpd會自動安裝一下依賴包 進入配置介面vi httpd.conf 把裡面的 allowoverride none 全部修改為 allowoverride all 順便在 directoryindex index.html 後面加上 index.htm index.php index.sht...
centos7 apache 安裝配置步驟
1 檢查 刪除 安裝 rpm qa grep httpd 檢查是否安裝apache rpm e 包名 nodeps 若有則刪除 ps 我沒有刪除,直接用的伺服器原來的。yum install httpd 安裝,根據提示,輸入y即可安裝成功 2 啟動 測試 systemctl start httpd ...
apache安裝 配置
好久前就準備要安裝一下apache到虛擬機器上面了 於是到apache.org找原始碼,編譯 等等,出問題了 沒有找到apr utl哦,於是又去網上查怎麼回事 不行呀洩氣了,搞毛呀,裝個apache都搞不定 等了好久 終於apache裝起來了 配置起來不是很 麻煩,documentroot配置好對應...