我想在 Azure 网站上启用 SSI,但使用 .html 而不是 .shtml。SSI 已启用,但在我的一生中,我找不到让它处理 .html 的方法。
在本地,我在 web.config 中添加了一个处理程序
<system.webServer>
<handlers accessPolicy="Read, Script">
<add name="ASPClassicHtml" path="*.html" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%IIS_BIN%\asp.dll" resourceType="File" />
</handlers>
</system.webServer>
这很好用,但是当我上传到 azure 网站时,我收到以下错误;
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
有什么建议么?