Saving a .htm template adds a web.config to the TemplateGalleryPath folder with HttpForbiddenHandler:
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="*.*" type="System.Web.HttpForbiddenHandler" />
</httpHandlers>
</system.web>
</configuration>
Consequently, IIS forbids any direct urls to TemplateGalleryPath or its subfolders.
Is there any setting to prevent adding this web.config ?
Regards,
-mika-