I am working on an IIS server for the first time and I need to create a rewrite rule that will redirect this url
http://domain.com/profile/image/NjIxYWVmaXVzcjgmKl5CcWVnYQ==/98x98
to
http://domain.com/profileimage.php?id=NjIxYWVmaXVzcjgmKl5CcWVnYQ==&size=98x98
This is what I have, but it is obvious that I don't know anything about IIS rewrite rules or regular expressions. So any help would be really appreciated.
EDIT: I need to makse sure that the last two parameters are variables... NjIxYWVmaXVzcjgmKl5CcWVnYQ== and 98x98 wil vary depending on the persons profile.
<rule name="Redirect /profile/image to profileimage.php" patternSyntax="Wildcard" stopProcessing="true">
<match url="(^/profile/image/$)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^/profile/image/$" />
</conditions>
<action type="Redirect" url="http://srattch.com/profileimage.pgp/?id={R:0}&size={R:1}" />
</rule>