I have a website and I set the Rewrite URL using the web platform installer. I want to allow a user-friendly URL, such as www.foo.com/123456, to www.foo.com/page.aspx?blah=123456. Using a friendly URL does this, except that the rule created also matches all / scriptresource.axd?blahblah created by ASP.NET, which of course violates most of the functions. My initial attempts to exclude script resource files failed.
Tool created regular expression ^([^/]+)/?$
source share