On CeraNet's hosting plans, .shtml files are allowed in server-side includes by default. However, if you wish to use .html server-side includes then you will need to modify the web.config file in the wwwroot folder to include the following...
<handlers>
<addname="SSINC-html"
path="*.html"
verb="*"
modules="ServerSideIncludeModule"
resourceType="File"
requireAccess="Script"/>
</handlers>
- 3 Users Found This Useful