Hi, I have this issue. Let's say that I have on a server two domains that actualy are pointing to the same website. www.example.com and www.example1.com, and these websites are on the same IP address : 100.100.100.100 Now the websites was rebuilded with a different technology ( from PHP/MySQL to .NET/MsSQL) and the new website is on a different computer on a different ISP so on a different IP address 200.200.200.200 Is there a way in Apache to redirect all the requests to www.example.com and www.examplex1.com to run on the seccond server. Example : www.example.com/index.php www.example.com/somepage.php asked by the HTTP on the first server To point to www.example.com/index.php www.examples.com/somepage.php but to load the pages from the seccond server ? Another problem is that when the user will load the new website all the links are like www.example.com/index.aspx so when they will click on that links actualy they will have to go to 1st server, here it will be the redirect and then will load the index.aspx page from the seccond server. How can I do that ? I know that for example on IIS you can make a redirect on the server to a new IP address, but is this scenario possible with Apache ?