Re: link check for mozilla.org fails with 404

On Sat, Jul 14, 2001 at 01:23:32PM -0400, Michael Nahrath wrote:
> Please have a look at <http://bugzilla.mozilla.org/show_bug.cgi?id=80122>
> 
> Seems like your link checker allways displys 404 errors for mozilla.org's
> pages, even if they exist for a normal browser.
> 
> Who is in error? Is http://www.mozilla.org replying wrong http: answers or
> do you ask it the wrong question?

Their server is broken in that it doesn't handle HEAD requests.

    The methods GET and HEAD MUST be supported by all general-purpose
    servers. 
      -- http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.1

   The HEAD method is identical to GET except that the server MUST NOT
   return a message-body in the response. The metainformation contained
   in the HTTP headers in response to a HEAD request SHOULD be identical
   to the information sent in response to a GET request.
     -- http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.4


gerald@ogobogo:/home/gerald; telnet www.mozilla.org 80
Trying 207.200.81.215...
Connected to gila.mozilla.org.
Escape character is '^]'.
HEAD / HTTP/1.0
Host: www.mozilla.org

HTTP/1.1 404 Not found
Server: Netscape-Enterprise/3.6
Date: Sat, 14 Jul 2001 18:20:53 GMT
Content-type: text/html
Content-length: 207
Connection: close

Connection closed by foreign host.

-- 
Gerald Oskoboiny     http://www.w3.org/People/Gerald/
World Wide Web Consortium (W3C)    http://www.w3.org/
tel:+1-613-261-6630             mailto:gerald@w3.org

Received on Saturday, 14 July 2001 14:29:13 UTC