If you wish your pages to be SSI enabled but don't wish to rename your pages to the .shtml extension, another option is to use the magical .htaccess file to tell the server to parse regular .htm and .html page to be SSI enabled instead. Create a blank text file, and add to it the code:
Code:
AddHandler server-parsed .html
AddHandler server-parsed .htm
Save this file as .htaccess, and upload to your root HTML directory in ASCII. Assuming your web host has .htaccess enabled, all your regular .htm and .html pages should now act just like .shtml pages.
More info here: Enabling SSI Via htaccess
Bookmarks