I have a server which has 3 domains all pointing to it. All domains are on the same website.
www.domain1.com www.domain2.com www.domain3.com
Ho
In your domain3's .htaccess, put:
domain3
RedirectPermanent / http://www.domain2.com/test.html
In your .htaccess, put:
RewriteEngine On RewriteCond %{http_host} ^www\.domain3\.com [NC] RewriteRule ^(.*)$ http://www.domain3.com/test.html [R=301,NC]
That should do it.