XAMPP本機配置域名訪問

打開xampp的安裝目錄,找到 apache\conf\extra 路徑下的 httpd-vhosts.conf 文件apache

打開註釋 NameVirtualHost *:80
這句很重要,我就是忘記打開它,結果不管host裏配置的什麼網址都指向htdoc的根目錄
添加站點配置:app

<VirtualHost *:80>
    ServerAdmin yang@21cn.com
    DocumentRoot "C:/xampp/htdocs/"
    ServerName localhost
    ServerAlias localhost
    ErrorLog "logs/localhost-error.log"
    =====注意此處是相對地址,有網上是絕對地址的,配置後appach啓動不起來
    CustomLog "logs/localhost-access.log" combined
    <Directory "C:/xampp/htdocs/">
        Options Indexes FollowSymLinks
        AllowOverride all
        Order Allow,Deny
        Allow from all
    </Directory>
</VirtualHost>ide

修改後,保存 httpd-vhosts.conf 文件,並重啓Apache。
而後咱們來修改Host文件
文件所在位置 C:\WINDOWS\system32\drivers\etc\hosts
在後面添加:io

127.0.0.1     v2011.app.com 192.168.0.206 yang.com
相關文章
相關標籤/搜索