用Intelligencia.UrlRewriter.dll实现url重写在iis下没有用,环境是xp,web.config
<?xml version="1.0"?>
<!--
    注意: 除了手动编辑此文件以外,您还可以使用 Web 管理工具来
    配置应用程序的设置。
    可以使用 Visual Studio 中的“网站”->“Asp.Net 配置”选项。
    设置和注释的完整列表在    machine.config.comments 中,
   该文件通常位于
    \Windows\Microsoft.Net\Framework\v2.x\Config 中
-->
<configuration>
<!--设置地址重写组件-->
<configSections>
<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/>
</configSections>
<!--地址重写规则-->
<rewriter file="~/App_Data/rewrite.xml"/>
<appSettings/>
<connectionStrings/>
<system.web>
<!--
            设置 compilation debug="true" 可将调试符号
            插入已编译的页面中。
            但由于这会影响性能,因此只在开发过程中将此值
            设置为 true。
        -->
<compilation debug="true">
</compilation>
<!--
            通过 <authentication> 节可以配置 ASP.NET 用来 
            识别进入用户的
            安全身份验证模式。 
        -->
<authentication mode="Windows"/>
<!--
            如果在执行请求的过程中出现未处理的错误,
            则通过 <customErrors> 节可以配置相应的处理步骤。
            具体说来,
            开发人员通过该节可以配置
            要显示的 HTML 错误页以代替错误堆栈跟踪。        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
<!--httpModules-->
<httpModules>
<add type="Intelligencia.UrlRewriter.RewriterHttpModule,Intelligencia.UrlRewriter" name="UrlRewriter"/>
</httpModules>
</system.web>
<system.codedom>
</system.codedom>
<!--
        在 Internet 信息服务 7.0 下运行 ASP.NET AJAX 需要 system.webServer 节。
        对早期版本的 IIS 来说则不需要此节。
    -->
<system.webServer>
</system.webServer>
</configuration>
rewrite.xml
<?xml version="1.0" encoding="utf-8" ?>
<rewriteRules>


<rewrite url="^~/Article/([^\.]+)\.aspx$" to="~/Article/Display.aspx?n=$1" />
</rewriteRules>