Quote:
Originally Posted by cotc2001
|
I moved my site to the root and had the following line in my .htaccess file that redirected all my links that were out on the search engines to the proper page on the root. Essentially, it just removed the /xcart part from the link.
www.mysite.com/xcart/product.php?productid=366&cat=0&page=1 was redirected to
www.mysite.com/product.php?productid=366&cat=0&page=1. The .htaccess code for this redirect was as follows:
Code:
Redirect 301 /xcart http://www.mysite.com
You should be able to accomplish what you want by simply putting the following redirect in your .htaccess file for your old site.
Code:
Redirect 301 http://www.newsite.com
I believe it would work the same way and that all your links to your old site would be redirected to the proper page on your new site. Give it a shot and let me know if it works.