I use the URLRewriter like this: http://msdn.microsoft.com/en-us/library/ms972974.aspx,and i need to write RewriterRule, Such as:
<RewriterRule>
<LookFor>~/(\d{4})/Default\.aspx</LookFor>
<SendTo>~/ShowBlogContent.aspx?year=$1</SendTo>
</RewriterRule>
but i want :
www.domain.com/Abc/123.html
www.domain.com/Abc/43.html
www.domain.com/Abc/989898.html
rewrite:
www.domain.com/Abc/0123/123.html
www.domain.com/Abc/0043/43.html
www.domain.com/Abc/9898/989898.html
rule:
file name last 4 characters, less than in the previous fill 0
i can write the regex for node <LookFor>: <LookFor>~/Abc/([\d]+).html</LookFor>
how to write the regex for node <SendTo>??????
anybody can help me??
thanks!