我正在为我的网站创建一个url rewriter.net规则而压力很大。
我有一个链接
 http://localhost/Pages/CategoryList.aspx?ID=2&Page=1我想把它换成这个
 http://localhost/Category/2.aspx?Page=1我尝试了以下几种方法:
<rewrite url="~/Category/(.+).aspx?Page=(.+)" to="~/Pages/CategoryList.aspx?ID=$1&Page=$2" /> 但它并没有起作用。
有人能帮我吗?
发布于 2009-10-14 21:13:53
你有没有补充:
<httpModules>
      <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter"/>
</httpModules>到你的web.config文件吗?
https://stackoverflow.com/questions/1569001
复制相似问题