Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to create rule. I have: http://host.com/ph.aspx?t=org&id=12345.jpg I want to get: http://host.com/imgrs.axd?w=800&file=12345.jpg

I wrote this one:

<rule name="PhotoOrg" patternSyntax="Wildcard" stopProcessing="true">
  <match url="*ph.aspx?t=org&id=*" />
  <action type="Redirect" url="imgrs.axd?w=800&file={R:2}" appendQueryString="false" />
  <conditions>
  </conditions>
</rule>

But redirect don't work.

share|improve this question
add comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.