Forum Moderators: phranque
Ther are a few dozen (minimum) ways to do this and this is just one.
make a .htacess file with the following in it.
DirectoryIndex index.cgi
and have index.cgi contain the following remembering to change the route to Perl on the first line and YOURNEWDOMAINORURL on the 3rd line and CHMOD 755
#!/usr/bin/perl
print "Status: HTTP/1.1 301 Moved Permanently\n";
print "Location: http://www.YOURNEWDOMAINORURL\n\n";
Jason D