Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

My company currently added a new IIS server called server2 to replace server1. I would like all traffic that tries to access server1 to be redirected to server2. Is there a quick way to do this in IIS.

For instance, if a user enters

http://server1 they get http://server2 after the redirect.

Furthermore, if a user enters

http://server1/king.aspx?quest=1 they get http://server2/king.aspx?quest=1 after the redirect.

share|improve this question
Which version of IIS? – squillman Jan 14 '10 at 2:24
The version of IIS is IIS6 – Matt Jan 14 '10 at 18:51

1 Answer

up vote 1 down vote accepted

Yeah, ISAPI_Rewrite can do exactly what you need. There is a free version.

http://www.isapirewrite.com/

share|improve this answer
Awesome! Thanks for the tip – Matt Jan 15 '10 at 20:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.