標籤:
感謝瀏覽,歡迎交流=。=
想為我老爸開發一套庫存管理系統,藉此機會打算使用下ext+php+apache+linux環境嘗嘗鮮。
為了在windows搭建本地開發測試環境,官網下載xampp,一鍵安裝apache,mysql等環境
啟動xampp發現80連接埠被IIS佔用,443連接埠被VMware佔用
於是,度娘告知:
443:設定檔位於C:\xampp\apache\conf\extra\httpd-ssl.conf中
則修改檔案中443連接埠為444
80:設定檔位於C:\xampp\apache\conf\httpd.conf中
則修改檔案中80連接埠為60000
訪問localhost:60000/xampp,問題解決
然而,依然無法通過xampp快速啟動瀏覽器訪問60000連接埠,定位到80,進入iis頁面。
於是尋找xampp是否有服務需要重啟,尋找發現沒有。遂尋找xampp的設定檔,果然xampp-control.ini檔案中發現如下配置:
[ServicePorts]
Apache=80
ApacheSSL=443
MySQL=3306
修改為60000,444後重啟xampp,問題解決
為apache增加多連接埠多網站:
修改檔案C:\xampp\apache\conf\extra\httpd-vhosts.conf
<VirtualHost *:60001>
ServerAdmin [email protected]
DocumentRoot "E:\ApacheRoot\rivertest"
ServerName localhost
ServerAlias localhost
ErrorLog "logs/dummy-host2.localhost-error.log"
CustomLog "logs/dummy-host2.localhost-access.log" common
<Directory "E:\ApacheRoot\rivertest">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:60000>
ServerAdmin [email protected]
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
ServerAlias localhost
ErrorLog "logs/dummy-host.localhost-error.log"
CustomLog "logs/dummy-host.localhost-access.log" common
<Directory "C:/xampp/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Allow from all
</Directory>
</VirtualHost>
windows下使用xampp一鍵安裝apache+php運行環境