redirect to an internal page

renebati

New member
Joined
Mar 14, 2008
Messages
2
Hello,

I have 3 domains.
One is the main domain : domain.com
And the 2 other domains must redirect to a page on the main-domain.

domain2.com must go to : domain.com/page2
and
domain3.com must go to : domain.com/page3

How can i do this?
With domainpointers i can only redirect to domain.com.

Can anyone help me?
thanx.

(sorry for my bad english, i'm from holland)
 
You need to run a redirect. One way to do it is worth an .htaccess file.

Jeff
 
Or u can use phpredirect.


PHP:
 <?php  
  header("Location: http://www.site.nl/"); /* Send browser to www.site.nl */  
    exit; /* Makes sure u exit without other code */  
    ?>
 
Back
Top