I can only guess, but most likely, you have Apache's MultiView feature enabled (or a similar mechanism on another web server). This feature selects one of many files that matches the request URL (sans extension), and has an extension that maps to the MIME type requested by the client through the Accept header. So, for example, if your have both foo.txt and foo.html in your docroot, and the client requests /foo, an Accept header that says text/plain will yield foo.txt, while text/html will give you foo.html.
The intended use is so that Apache can serve different files to different browsers based on their capabilities: for example, you can have a PNG and a GIF version of the same image, and Apache serves whatever the browser says it can handle.
Under normal circumstances, you want to disable MultiViews, because (especially when you have server-side scripting going on, say, PHP) it can lead to undesired (and sometimes baffling) results.
This mechanism, BTW, has absolutely nothing to do with HTML (4, 5, XHTML or whatever) - you will see the same behavior for image files, videos, stylesheets, plain text, anything.