SHTML is a file extension that lets the web server know that the file should be processed using Server Side Includes (SSI).
(HTML ... you know what it is, and DHTML is the Microsoft name for Javascript + HTML + CSS or something else).
You can use SSI for (for example), including a common header and footer on your pages, so you donβt need to repeat the code many times, and changing one included file updates all your pages at once. You just put it on your HTML page as normal.
It is built into the standard XML comment and looks like this:
It has been largely replaced by other mechanisms, such as PHP, but some hosting packages still support it and nothing more.
You can read in this article.
Robert Grant Feb 06 '09 at 9:09 2009-02-06 09:09
source share