It it possible to have multiple ReWrite rules that all do the same Action, for an IIS7.5 webserver?
- by Pure.Krome
I've got rewrite module working great for my IIS7.5 site.
Now, I wish to add a number of urls that all goto an HTTP 410-Gone status.
Eg.
<rule name="Old Site = image1" patternSyntax="ExactMatch" stopProcessing="true">
<match url="image/loading_large.gif"/>
<match url="image/aaa.gif"/>
<match url="image/bbb.gif"/>
…