View Single Post
  #3 (permalink)  
Old 04-13-2005, 09:11 AM
tthurgo's Avatar
tthurgo tthurgo is offline
Moderator
 
Join Date: Jan 2002
Location: Lebanon, PA
Posts: 357
Quote:
Originally Posted by Allen
easiest way would be to create a index.php with a meta refresh to the other page...
But meta refresh looses search engines.

Rather create a Perl script with this:

Code:
use CGI; 
my $q = CGI->new(); 
print $q->redirect( 
  -location => 'http://someothersite.com/page1.cgi', 
  -status => 301, 
);
__________________
Tom Thurgo
my future is coming on
Reply With Quote