View Single Post
  #2 (permalink)  
Old Oct 4th, 2006, 12:43
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Site Redirection

You can do this through hosting (domain forwarding), meta refreshes, or PHP. Domain forwarding is the best option, but PHP is easier if you don't know where to look for that. Just make a page called index.php at the root of your site with this in it:

PHP: Select all

<?php
header
("Location: http://redirect-to-desired-domain.com/");
?>
Reply With Quote