• Framework4.0 IIS7下urlrewriter设置问题


    一、Web.config配置解决办法

        直接在Web.config下 加入:

       1.<configSections>
        <section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
          </configSections>

       2.<httpModules>
             <add type="Intelligencia.UrlRewriter.RewriterHttpModule,Intelligencia.UrlRewriter" name="UrlRewriter" />
        </httpModules>

       3.<system.webServer>
        <modules runAllManagedModulesForAllRequests="true"/>
        <handlers>
                <add name="woool1" path="*" verb="*" modules="IsapiModule" scriptProcessor="C:WindowsMicrosoft.NETFrameworkv4.0.30319aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv4.0,bitness32" />
             <add name="woool" path="*.html" verb="*" modules="IsapiModule" scriptProcessor="C:WindowsMicrosoft.NETFrameworkv4.0.30319aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
        </handlers>
       </system.webServer>

    说明:如果是IIS7 和 Framework 2.0时,不需要红色字体部分,把v4.0.30319改成对应的2.0的版本号。

            如果是IIS7 和 Framework 4.0时,红色字体部分是必须的。

    二、 手动在IIS7下添加 步骤如下:

      1.打开IIS7窗口下的  处理程序映射

    2.在处理程序映射下添加 *.html和*的映射

  • 相关阅读:
    【洛谷P3389】【模板】高斯消元
    【NOIP2016】提高组
    【NOIP2013】提高组
    【NOIP2012】提高组
    【NOIP2011】提高组
    【NOIP2010】提高组
    【NOIP2009】提高组
    【NOIP2008】提高组
    【NOIP2007】提高组
    【51nod 1189】阶乘分数——阶乘质因数分解
  • 原文地址:https://www.cnblogs.com/waw/p/4979349.html
Copyright © 2020-2023  润新知