简体   繁体   中英

Access Apache virtual host over lan

i configured my xampp to use vhost

on apache/conf/extra/httpd-vhosts.conf i have

NameVirtualHost *:80  //uncommented

<VirtualHost *:80>
DocumentRoot "Z:/xampp/htdocs"
ServerName localhost
</VirtualHost>

<VirtualHost web1.project>
DocumentRoot "Z:/xampp/htdocs/web1" 
ServerName web1.project

<Directory "Z:/xampp/htdocs/web1">
Options Indexes FollowSymLinks ExecCGI Includes
    Order allow,deny
    Allow from all
</Directory>
</VirtualHost>

then on windows/system32/drivers/etc/hosts i have

127.0.0.1 localhost
127.0.0.1 web1.project

on my machine its works perfect, i can go direct on browser and access http://web1.project

but on another machines on same lan, dont works, ok i figured my IP

my network map i have all ips for each machine on my lan

the computer here xampp is running have 192.168.1.221

so like on my tablet i can go 192.168.1.221 and i have xampp running

if i go 192.168.1.221/web1 works

but http://web1.project don't works

any idea, what i need to do to have put this to work?

thanks.

web1.project is not registered in your DNS.

A quick and dirty way to test it on other computer , you can add <IP ADDRESS> web1.project in its /etc/hosts . On android device, you can use https://play.google.com/store/apps/details?id=com.treb.hosts to modify that /etc/hosts file in android device(though I have never tested it though)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM