404 status code means that the requested page or resource was not found on the server.
The user sees an error message, and search engines may remove the page from their index.
GET / HTTP/1.1 Host: ap0.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-15" /> <title>404 Not Found</title> </head> <body> <h1>Not Found</h1> <p>Nothing matches the given URI</p> </body> </html>