Browse by Tags

All Tagsquerystring (RSS)
  • Re: confused about "rewrite module"

    certainly. I used the word "stripped" becaise I could not think of another. Here's what I see: http://123.123.123.123/cv/service1.asmx/getAccountInfo?acct=12345 This performs as though there were no "?acct=1234" passed in. It returns only the parent node (i.e.: no data). Note...
    Posted to Forum by mreynol5 on 11-07-2009, 5:54 AM
  • Re: Look at my URL

    Nice repro! Can you clarify this: >> however, I do need params passed via querystring attached in the rewrite, including (a=) if not found in pattern << Does it mean that if the url is http://www.cbengine.net/1234/comments/?a=graphs&p=5678 then you want to ignore the query string? Can...
    Posted to Forum by ruslany on 05-14-2009, 12:31 PM
  • 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
  • Seek Professional Help!!!

    I need professional help here... Here's the situation... I have product URL's going to detail pages. On that page it breaks out into sub-sections, at times it also carries extra parameters in the query string other than "v" and "fa"... note that "v" is an alpha-numeric...
    Posted to Forum by goldentine on 05-11-2009, 9:30 AM
  • Re: Rewrite input with parameters. (question mark ? issue)

    The pattern that is specified in the <match> element of the rule is evaluated agains the URL path only - without query string. This article explains that in more details: http://learn.iis.net/page.aspx/465/url-rewrite-module-configuration-reference/#Accessing_URL_Parts_from_a_Rewrite_Rule For an...
    Posted to Forum by ruslany on 05-04-2009, 2:23 PM
  • Re: Query string with multiple parameters

    If parameters can be in any order within the query string then you can try something like this: <rule> <match url="page\.aspx$" /> <conditions> <add input="{QUERY_STRING}" pattern="(?:^|&amp;)p1=(\d+)(?:&amp;|$)" /> <add input="##...
    Posted to Forum by ruslany on 02-26-2009, 12:58 PM
  • Re: help with IIS7 rewrite rule (rewrite whole QS as 1 string)

    URL rewrite module is only supported on IIS 7 and further. To do the same on IIS 6 you have to use some other URL rewriting module, for example ISAPI Rewrite.
    Posted to Forum by ruslany on 01-19-2009, 2:10 PM
  • Re: help with IIS7 rewrite rule (rewrite whole QS as 1 string)

    So basically you want to rewrite from jsbox.js to jsbox.aspx and keep the original query string. In that case this rule should work for you: <rule name="Rewrite" patternSyntax="Wildcard"> <match url="jsbox.js" /> <action type="Rewrite" url="jsbox...
    Posted to Forum by ruslany on 01-16-2009, 8:09 PM
  • Seeing rewritten URI in status

    Hello! Perhaps a dumb/newbie question but still - just how do I get the rewrite module to display already rewritten URI in browser status eg. when you go over the link, in the status bar (bottom of the browser) to display rewritten URL - not just after the URL has been visited already and rewritten after...
    Posted to Forum by DarkMaster on 01-05-2009, 5:27 AM
  • Re: What am I doing wrong?

    There are many articles about using URL rewrite module available here http://learn.iis.net/page.aspx/460/using-url-rewrite-module .
    Posted to Forum by ruslany on 11-13-2008, 11:46 AM
Page 1 of 3 (22 items) 1 2 3 Next >