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,
);