2

我刚刚从 Urlrewriter.net 安装了示例,但我似乎无法弄清楚解决问题的规则。

很简单:

如果用户导航到此页面:

http://localhost/UrlRewriteTest/Default.aspx?PageID=33

网址应如下所示:

http://localhost/UrlRewriteTest/33

或者可能

http://localhost/UrlRewriteTest/33.aspx

我究竟做错了什么?这是我的 web.config:

<?xml version="1.0"?>
<configuration> 
  <configSections>
    <section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/>
  </configSections>
    <system.web>
    <httpModules>
      <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter"/>
    </httpModules>
    <compilation targetFramework="4.0"/>
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
  </system.web> 
  <rewriter>
    <rewrite url="~/(.+)" to="~/Default.aspx?PageID=$1"/> 
  </rewriter>
    <system.webServer>
        <modules runAllManagedModulesForAllRequests="true">
            <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule" />
        </modules>
        <validation validateIntegratedModeConfiguration="false" />
    </system.webServer>
</configuration>

这是第一步。更理想的是,PageID 应该被传递到数据库并返回页面名称而不是 ID,并且 URL 应该最终看起来像这样:

http://localhost/UrlRewriteTest/thename/

此致。

4

1 回答 1

1

你可以阅读 Scott Guthrie 关于 Url Rewriting 的文章 @ http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx

于 2012-08-15T13:34:21.347 回答