Mobile app version of vmapp.org
Login or Join
Hamm4606531

: Masking a redirection in IIS7 My tools: IIS7 1 x Windows 2008 Server IIS URL Rewrite Module 2 (installed) My requirement: Mask the redirection of www.bob.com to www.abc.com/bob/index.html - the

@Hamm4606531

Posted in: #Iis7 #Masking #Redirects

My tools:


IIS7
1 x Windows 2008 Server
IIS URL Rewrite Module 2 (installed)


My requirement:


Mask the redirection of bob.com to abc.com/bob/index.html - the end user should not see the abc.com The user should then be able to browse the website as normal.


I have found references to installing AAR, however this seems to be more for load balancing etc.? Then others have said use a 3rd party tool etc.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamm4606531

2 Comments

Sorted by latest first Latest Oldest Best

 

@Ann8826881

For IIS7 you will indeed need AAR. There are 3rd party modules available that can do what you need as well such as Helicon Ape: www.helicontech.com/ape/
Using AAR: blogs.msdn.com/b/carlosag/archive/2010/04/02/setting-up-a-reverse-proxy-using-iis-url-rewrite-and-arr.aspx
You'll be reverse proxying requests for www.bob.com/ to www.abc.com/bob/
In Apache, with the correct modules loaded, it can be done as:

RewriteCond %{HTTP_HOST} ^www.bob.com [NC]
RewriteRule (.*) www.abc.com/bob [P,L]

10% popularity Vote Up Vote Down


 

@Steve110

Have a look at the following article here. It appears to describe a very similar situation as to what you are trying to setup.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme