1. 程式人生 > >php如何搭建本地執行環境

php如何搭建本地執行環境

安裝 xampp, 下載地址:自己百度

安裝之後修改httpd-vhosts.conf檔案,檔案目錄 xampp\apache\conf\extra\httpd-vhosts.conf

<VirtualHost *:80>
    DocumentRoot "F:\xampp\htdocs\works\guandan"
    ServerName guandan.local
</VirtualHost>

配置本地host檔案,檔案目錄 C:Windows\System32\drivers\etc\hosts

127.0.0.1 guandan.local

使127.0.0.1這個IP指向到上面的ServerName本地域名

執行xampp-control.exe檔案 開啟Apache  MySQL

後面把地址的域名改成ServerName就可以本地除錯了。

http://guandan.local/