当前位置: 代码迷 >> ASP.NET >> 未能加载类型"URLRewriter"解决思路
  详细解决方案

未能加载类型"URLRewriter"解决思路

热度:9610   发布时间:2013-02-25 00:00:00.0
未能加载类型"URLRewriter"
行 24: <globalization requestEncoding="gb2312" responseEncoding="gb2312" fileEncoding="gb2312" culture="zh-CN"/>
行 25: <httpModules>
行 26: <add type="URLRewriter" name="HttpModule"/>
行 27: <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></httpModules>
行 28: <httpHandlers>

------解决方案--------------------------------------------------------
你将URLRewriter.dll放到bin目录下了吗
------解决方案--------------------------------------------------------
<add type="URLRewriter" name="HttpModule"/>
这个好像不对 你去百度上看看

我用的是Intelligencia.UrlRewriter
<httpModules>是这样写的
 <add type="Intelligencia.UrlRewriter.RewriterHttpModule,Intelligencia.UrlRewriter" name="UrlRewriter" />

在 <configSections>这里也要加以个
<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/>
 
  相关解决方案