1. 程式人生 > >XAMPP Apache 設定virtual host

XAMPP Apache 設定virtual host

  • 最後猜測可能是因為我們修改配置檔案其實是覆蓋了之前的設定,所以把之前的設定也放到這裡:

    <VirtualHost *:80>

    DocumentRoot "C:/software/xampp/htdocs/"

    ServerName localhost

    </VirtualHost>

    <VirtualHost *:80>

    DocumentRoot "C:/software/xampp/Yii/basic/web"

    ServerName yii.localhost

    ErrorLog "C:/software/xampp/Yii/error.log"

    CustomLog "C:/software/xampp/Yii/custom.log" common

    </VirtualHost>

    可以看到,這次加了htdocs目錄作為vitrual host,作為localhost預設載入的目錄。重啟Apache後,點選admin按鈕正常的進入管理頁面。