IIS web.config 文件损坏了?

IIS web.config 文件损坏了?

IIS 新手。在 Windows 上使用 IIS 7.5。我使用文本编辑器(记事本)打开了位于 wwwwroot 中的 web.config,因为我对其内容很好奇。我没有做任何更改,但我错误地保存了该文件。现在它是一个 .txt 文件,无法识别。不幸的是,我无法重新创建该文件。我该如何将文件转换回其原始格式?

这是 web.config 文件的内容

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <add name="Lasso8App" path="*lassoApp" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\System32\Lasso8ConnectorforIIS.dll" resourceType="Unspecified" preCondition="bitness64" />
            <add name="lasso8" path="*lasso" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\System32\Lasso8ConnectorforIIS.dll" resourceType="Unspecified" preCondition="bitness64" />
        </handlers>
    </system.webServer>
</configuration>

谢谢

相关内容