I'm trying to use IIS7 URL Rewrite 2.0 to dynamically set an Access-Control-Allow-Origin header for AJAX requests originating from a couple of specific hosts. (One of them being localhost for ease of development).
My problem is that I'm not sure how to specify a condition based on the request Origin header, and after scouring the internets trying to figure it out I guess it's time to post it up here and then go get a coffee. ;-)
Here's what I have currently in my outboundRules web.config section as my best guess. Is there a correct way to format the conditions block here, or am I just barking up the wrong tree altogether?
<rule name="Dynamic CORS origins header -- localhost">
<match serverVariable="RESPONSE_Access_Control_Allow_Origin" pattern="^$" />
<conditions>
<add input="{REQUEST_Origin}" pattern="http://localhost/?.*" />
</conditions>
<action type="Rewrite" value="http://localhost" />
</rule>