All Tags > Rules > URL Rewrite (RSS)
  • Look at my URL

    Can someone please take a look at what I have going on here. I've documented the issues I'm having, along with what I need on this page pretty well... should be self explanatory. I've also posted the <rule> code on the page for examination... Rewrite: http://www.cbengine.net/1234/comments...
    Posted to Forum by goldentine on 05-14-2009, 8:21 AM
  • Re: Not Rewriting

    Nothing else needs to be activated in order for URL rewriter to work. I would suggest to generate a failed request tracing file and check if URL rewrite rules are actually evaluated. To generate a trace file follow the steps described in this article .
    Posted to Forum by ruslany on 07-11-2008, 2:27 AM
  • Rule import Wizard issues

    Just looking at the URL-Rewrite module with a plan to POC wordpress MU and came accross a few things 1st being the rule import does not like "RewriteBase BASE/" saying it is not supported, Great, but it woudl be nice I could then manualy edit the generated XML rule set, so I can apply them...
    Posted to Forum by species5618 on 06-26-2008, 6:13 AM
  • Re: Images do not display with custom URL rewrite module

    Hi, This issue is somehow similar to the thread http://forums.iis.net/t/1149755.aspx . You need to skip processing the images. There are several approaches, but the one that may work to you is to skip the rule if the requested URL is a file or directory in the Web Server. <rule name="Your Rule">...
    Posted to Forum by DanielVL on 06-17-2008, 1:32 PM
  • Re: https redirect

    There are several ways you can implement this rule: 1. Insert the rule example that was mentioned on this thread into the web.config file located in the root folder of your web site. If there is no web.config file there then create one. After you inserted the rule the web.config file should look as below...
    Posted to Forum by ruslany on 06-10-2008, 2:08 PM
  • Re: https redirect

    You can use a rule similar to this: <rewrite> <rules> <rule name="Redirect to https"> <match url="(.*)" /> <conditions> <add input="{SERVER_PORT}" pattern="443" negate="true" /> </conditions> <action type="Redirect"...
    Posted to Forum by ruslany on 06-09-2008, 5:04 PM
  • Re: Rewrite rule to skip processing css/jpg/etc?

    From what you described, your rule is located in a right place and it should not affect the css and images located in sub-folder. Are there any other rules defined in the same web.config file or in a "skins" sub-folder? For test purposes can you disable all the other rules and leave only the...
    Posted to Forum by ruslany on 06-09-2008, 3:35 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
  • Re: Rewrite rule to skip processing css/jpg/etc?

    Hi Bob, Thanks for trying it out. Could you please share me your rules?, they should be defined in your web.confg file. You can also enable the tracing feature, here is how: http://learn.iis.net/page.aspx/467/using-failed-request-tracing-to-trace-rewrite-rules/ ; so you can troubleshoot the workflow...
    Posted to Forum by DanielVL on 06-06-2008, 6:15 PM
Page 1 of 1 (9 items)
Microsoft Communities