Hello! I need some help with redirects using IIS 6.
I have a site that has redirects to different websites in its subfolders. I need to find a way to make a "catch all" redirect but that will respect all previously placed redirects. Here is an example of what I mean:
http://www.OLDwebsite.com has some subfolder redirects such as:
http://www.OLDwebsite.com/baskets --> http://www.websiteONE.com
http://www.OLDwebsite.com/kites/page1.htm --> http://www.websiteTWO.com/page1
http://www.OLDwebsite.com/kites/page2.htm --> http://subdomain.websiteTWO.com/specificpage1.htm
Now, all of the above redirects work correctly, but there are still pages on the OLDwebsite that do not have a redirect. I need to implement a way to redirect the remaining pages in the OLDwebsite to a NEWwebsite. So if there was a request for
http://www.OLDwebsite.com or http://www.OLDwebsite.com/market
It would go to
http://www.NEWwebsite.com
Is there any way to do this?
Thanks!