如果服务器环境为IIS7.0 ,则在升级后需要重新进行HTM脚本映射,并将index.aspx设为默认首页。
下载网站空间根目录下的web.config 打开文件修改,在</configuration>这前面插入如下代码:
<system.webServer>
<handlers>
<add name="HTM" path="*.htm" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
</handlers>
</system.webServer>
如果index.aspx不是默认首页,请则将index.aspx设为默认首页。