windows下使用xampp一鍵安裝apache+php運行環境

來源:互聯網
上載者:User

標籤:

感謝瀏覽,歡迎交流=。=

 

 

想為我老爸開發一套庫存管理系統,藉此機會打算使用下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運行環境

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.