<?xml version="1.0"?>
|
<!--
|
For more information on how to configure your ASP.NET application, please visit
|
http://go.microsoft.com/fwlink/?LinkId=301879
|
-->
|
<configuration>
|
<appSettings/>
|
<!--
|
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。
|
|
可在 <httpRuntime> 标记上设置以下特性。
|
<system.Web>
|
<httpRuntime targetFramework="4.8" />
|
</system.Web>
|
-->
|
<system.web>
|
<compilation debug="true" targetFramework="4.8"/>
|
<httpRuntime targetFramework="4.5.2"/>
|
</system.web>
|
<system.webServer>
|
<handlers>
|
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
|
<remove name="OPTIONSVerbHandler"/>
|
<remove name="TRACEVerbHandler"/>
|
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
|
</handlers>
|
</system.webServer>
|
</configuration>
|