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

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>
share|improve this question

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.