Code:
NameVirtualHost *:80
#default
<VirtualHost *>
DocumentRoot "C:/Apache/htdocs"
ServerName localhost
</VirtualHost>
#web1
<virtualHost *>
DocumentRoot "C:/web1/www"
ServerName web1.localhost
</virtualHost>
Now, if I want someone within my local area network to view web1, how would they do that?
I figured something like [ip].web1 would work, but no.
Thanks in advance.