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

解决IIS8中 URLRewriter 不能使用的方法

时间:2015-04-22 17:52:44      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:

1、把应用程序池改成集成

2、的web.config 加入代码

 <system.webServer>
        <validation validateIntegratedModeConfiguration="false" />
        <modules runAllManagedModulesForAllRequests="true" >
          <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule,Intelligencia.UrlRewriter" preCondition="managedHandler"/>
          <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" preCondition="managedHandler"/>
        </modules> </system.webServer>

 参靠:http://stackoverflow.com/questions/26661495/intelligencia-urlrewriter-does-not-work-in-iis8-or-iis-express-8

解决IIS8中 URLRewriter 不能使用的方法

标签:

原文地址:http://www.cnblogs.com/fogwang/p/4448020.html

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