我正在尝试使用 urlrewriter.net 并按照此处的说明进行操作,但是当我运行它时出现此错误:
The element 'rewrtie' is not allowed.
这是我在 web.config 文件中添加的内容:
<httpModules>
<add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter"/>
</httpModules>
<modules runAllManagedModulesForAllRequests="true">
<add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule" />
</modules>
<configSections>
<section name="rewriter"
requirePermission="false"
type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
<rewriter>
<rewrtie url="~/User/Ahmed/ahmed.aspx" to="~/User/ahmed" />
</rewriter>
使用asp.net 3.5有什么问题,谢谢