我是实用微软提供的两个dll文件实现的伪静态:引用添加过了,配置也配置好了,但是就是没有效果,不知道怎么回事,由于是第一次使用,找不出问题。下面是相关配置:<configSections> <section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" /> <RewriterConfig> <Rules> <RewriterRule> <LookFor>~/index.aspx</LookFor> <SendTo>~/default.aspx</SendTo> </RewriterRule> </Rules> </RewriterConfig>HttpHandlers中的配置: <add verb="*" path="*.aspx" type="URLRewriter.RewriterFactoryHandler, URLRewriter" /> <add verb="*" path="*.html" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />HttpModules中的配置: <add type="URLRewriter.ModuleRewriter, URLRewriter" name="ModuleRewriter"/>
2 回答
陪伴而非守候
TA贡献1757条经验 获得超8个赞
<!--地址重写规则-->
<rewriter>
<rewrite url="~/(.*)_(\d+).html" to="~/$1.aspx?page=$2" processing="stop"/>
<rewrite url="~/(.*).html" to="~/$1.aspx" processing="stop"/>
</rewriter>
- 2 回答
- 0 关注
- 284 浏览
添加回答
举报
0/150
提交
取消