I want to redirect the old pages
www.aaa.no
to the new ones
www.bbb.no
where, by the way, the directory tree is quite different from the old one.
Suppose the webroot both in aaa and bbb is /www (unix/apache).
I can redirect every page in- and beneath the webroot with a .htaccess-file
like this:
Redirect 301 /
http://www.bbb.no
(In this top page there are links making it possible to navigate to the new
place of the wanted info.)
Now to the point:
We have a virtual host
www.beneath.no with its webroot in /www/beneath
*I want this to continue working*, but with the solution above, it will not.
Here all attempts to fetch pages in- or beneath the webroot, is redirected
to
www.bbb.no
Anyone understand?
Thanks Knut