On Thu, 8 Feb 2007, c naveen wrote: > Date: Thu, 8 Feb 2007 13:52:39 +0530 > From: c naveen <[EMAIL PROTECTED]> > > Hi all > > 2.how to know a web site is using a apache web server? >
There are two approaches possible here - 1. access the site netcraft.com go to the top left site of the site and type the domain name of the site about which you wish to know the web server details. 2. alternatively, you can telnet www.domain-name.com 80 telnet www.domain-name.com 8008 telnet www.domain-name.com 8080 HEAD / HTTP/1.0 <CR><LF> <CR> ... Note: <CR><LF> implies press the ENTER key Here is an illustration of the above mentioned approach - telnet www.twincling.org 80 Trying 203.194.209.191... Connected to www.twincling.org. Escape character is '^]'. HEAD / HTTP/1.0 HTTP/1.1 302 Found Date: Thu, 08 Feb 2007 15:50:08 GMT Server: Apache Location: http://www.coolhost77.com/ Connection: close Content-Type: text/html; charset=iso-8859-1 Connection closed by foreign host. - Hope this helps. thanks Saifi.

