I've recently got a new domain. Now I want my current domain 'point' to the new one (when I type 'old.heliohost.org' I want myself redirected to 'new.com'). At the same time I don't want to lose my current domain as I may need it if something goes wrong with the new domain, for example. So, I've searched the Net for this and found some examples of how to do this using '.htaccess' (eg. http://whaaat.com/content/redirect-old-domain-new-domain-using-htaccess). Following this example, I did the following: <CODE> RewriteCond %{HTTP_HOST} ^old.heliohost.org$ [OR] RewriteCond %{HTTP_HOST} ^www.old.heliohost.org$ [OR] RewriteCond %{HTTP_HOST} ^www.new.com$ RewriteRule (.*)$ http://new.com/$1 [R=301,L] </CODE> Then I typed 'new.com' into my browser. The main page including CSS files were loaded OK, but all the images and some scripts disappeared (I didn't touch the contents of this page). I've read about the DomainChange script (http://www.heliohost.org/home/support/scripts/domain), but it should eliminate my old domain, shouldn't it? What to do? How to redirect my old domain to the new one?