安裝Laravel環境(windows)
安裝XAMPP
將XAMPP安裝於D:\
建議不要將XAMPP安裝於C:\Program Files (x86) 底下
安裝Composer
開啟你的command line tool (cmd, Powershell, bash…)
輸入composer --version
出現composer的版本訊息就代表成功囉!
安裝Laravel
D: cd D:\Projects\Tutorial //安裝Laravel的路徑 composer create-project laravel/laravel --prefer-dist
備註:在安裝時可以看到,我們下的指令只是安裝laravel,可是composer會自動幫我們去找尋laravel的依賴套件,然後一併下載,這就是composer的強大、方便之處!
到XAMPP的安裝路徑下找到
D:\xampp\apache\conf\httpd.conf
D:\xampp\apache\conf\extra\httpd-vhosts.conf
以編輯器開啟這兩個檔案
為了要讓Apache可以讀取到虛擬站台的設定
在httpd.conf中,確保Include conf/extra/httpd-vhosts.conf沒有被註解,有的話將最前面的#刪除
在httpd-vhosts.conf裡,在最後加上:
<VirtualHost laravel.local:80> DocumentRoot "D:/Projects/Tutorial/laravel/public" <Directory "D:/Projects/Tutorial/laravel/public"> Options All AllowOverride All Require all granted </Directory> </VirtualHost>
//紅色部分記得改修改成安裝Laravel的路徑 裡面的public資料夾
設定hosts
上述設定好後,用記事本以系統管理員身分開啟系統中的hosts檔案
Windows的路徑: C:/Windows/System32/drivers/etc/hosts
Mac OS的路徑: /private/etc/hosts
Linux的路徑: /etc/hosts
在hosts文件的最後,加上
127.0.0.1 laravel.local
開啟XAMPP的Control Panel,將Apache打開
瀏覽器輸入http://laravel.local
就可以看到Laravel的歡迎畫面
xampp設定的虛擬站台與Apache 不同
恢復原本的Apache方式
xampp停止
Apache restart
留言
張貼留言