Mac 電腦安裝 Laravel

阿週日記發表於2019-06-25
  1. 通過composer建立專案
    1.1 終端內執行命令安裝laravel
    composer create-project --prefer-dist laravle/laravel slrApp
    1.2 配置虛擬域名
    1)終端內修改hosts檔案
    1.1 sudo su 獲取許可權
    1.2 vim /etc/hosts vim修改hosts檔案,進入後到最後一行按i鍵進入編輯
    1.3 127.0.0.1 slrApp.net 輸入你自己想要使用的域名,修改完按esc鍵退出編輯,再輸入:wq儲存
    1.4 vim /private/etc/apache2/extra/httpd-vhosts.conf vim編輯httpd-vhosts.conf檔案
    <VirtualHost *:80>
    DocumentRoot "/Users/zhouhongliang/Site/slrApp/public"
    ServerName slrApp.net
    ErrorLog "/private/var/log/apache2/dummy-host2.example.com-error_log"
    CustomLog "/private/var/log/apache2/dummy-host2.example.com-access_log" common
    </VirtualHost>

    填到最後 把路徑和域名改為自己的
    1.5 重啟apache
    sudo apachectl restart
    1.6 訪問域名報錯,無法開啟日誌檔案,因為需要給專案內storage 和 bootstrap/cache 新增許可權
    1) 終端內,進入專案根目錄
    2) 進入後sudo chmod -R 777 storage
    3) 再進入到bootstrap檔案內
    4) 執行sudo chmod -R 777 cache/
    再訪問Laravel專案就成功了。

周洪亮

相關文章