All TagsWildcards (RSS)
  • Re: Migrating from UrlRewritingNet.UrlRewriter.dll to IIS Url Rewrite Module

    Additionally, be aware that the regex expression would also match: Product/Detail AB aspx And will capture just 'A'. You need to change "(.*)/Detail(.*) . aspx" to "(.*)/Detail(.*) \. aspx"; remember that the expression "." means any character, you need to escape...
    Posted to Forum by DanielVL on 07-17-2008, 3:50 PM
  • Re: how rewite www.aaa.com to www.bbb.com?

    With URL rewrite module you can use rule, that looks similar to this: <rule name="Redirect rule" patternSyntax="Wildcard" stopProcessing="true"> <match url="*" /> <conditions> <add input="{HTTP_HOST}" pattern=" www.aaa.com "...
    Posted to Forum by ruslany on 06-25-2008, 12:33 PM
  • Re: Rewrite rule to skip processing css/jpg/etc?

    It looks to me that you want to rewrite any URL that is not actual a resource or page in your Web Application. You could use something like: <rule name="ImportedRule3" patternSyntax="Wildcard" stopProcessing="true"> <match url="*" /> <conditions>...
    Posted to Forum by DanielVL on 06-06-2008, 9:22 PM
Page 2 of 2 (13 items) < Previous 1 2
Microsoft Communities