After a lot of searches and tripping over various articles, I found this article in which you need to install the URL Rewrite module (not packaged with IIS7). After that, it's pretty simple.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule> <match url="start\.html" /> <action type="Rewrite" url="finish.html" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
I was very surprised that additional download was required - I thought that this function should be baked (testing on Win7x64). Well, at least it works.
Adam tuttle
source share