From my understanding, the HTML5 is on browser side. Is there anything need to setup on the server to support HTML5? How do I verify the server fully support HTML5? Thanks.
From my understanding, the HTML5 is on browser side. Is there anything need to setup on the server to support HTML5? How do I verify the server fully support HTML5? Thanks.
An HTTP server knows that it's not an expert in parsing HTML like those "browsers" it keeps hearing about; it cares that it's HTML long enough to set the MIME type to
text/html
and to decide whether it should be compressed and whether it needs to get handled by an external handler, but that's all based on the file extension.The contents of HTML are of no concern to a web server; no special requirements need to be in place to serve HTML5 content.