now i'm using Dynamic DNS, at no-ip.org
i can use virtual host now, but i have to enable wildcard there.
so it's working.
i still got a question that, why it not work in LAN.
for example it set server name is "myserver", when i type "myserver" at browser it display webpage on server.
but when i set vitual host already,
############################### MAIN
NameVirtualHost *
<VirtualHost *>
ServerName ttt.myftp.org
DocumentRoot /var/www/html
</VirtualHost>
<VirtualHost *>
ServerName ttt.no-ip.org
DocumentRoot /home/thep/www
</VirtualHost>
<VirtualHost *>
ServerName 192.168.1.254
DocumentRoot /var/www/html
</VirtualHost>
<VirtualHost *>
ServerName ultimo
DocumentRoot /var/www/html
</VirtualHost>
################################ VIRTUAL
<VirtualHost *>
ServerName
www.ttt.no-ip.org
ServerAlias
www.ttt.no-ip.org #IT"S WORKING
DocumentRoot /home/thep/www
DirectoryIndex index.cfm index.htm index.html
</VirtualHost>
<VirtualHost *>
ServerName
www.tttno-ip.org
ServerAlias virtual.ttt.no-ip.org #IT"S WORKING
DocumentRoot /home/ting/www
DirectoryIndex index.cfm index.htm index.html
</VirtualHost>
<VirtualHost *>
ServerName ultimo
ServerAlias me.ultimo #### NOT WORKING
DocumentRoot /home/me/www
DirectoryIndex index.cfm index.htm index.html
</VirtualHost>
when i use server name from my server, it's not working
do i have to set anything ???
thank you