码迷,mamicode.com
首页 > Web开发 > 详细

Framework4.0 IIS7下urlrewriter设置问题

时间:2015-11-20 00:03:30      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

一、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:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv4.0,bitness32" />
         <add name="woool" path="*.html" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_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和*的映射

技术分享

技术分享

Framework4.0 IIS7下urlrewriter设置问题

标签:

原文地址:http://www.cnblogs.com/waw/p/4979349.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!