Quote:
Originally posted by theprof
How do I modify it to redirect to my VB URL?
|
I did it this way.
move Ultimate.cgi to something else, like Ultimate.cgi.safe
Create a new file, Ultimate.cgi, and put this in it:
Code:
#!/usr/local/bin/perl
print "Content-type: text/html\n\n";
print "<HTML>\n";
print "<HEAD>\n";
print "<TITLE>\n";
print "</TITLE>\n";
print "<meta http-equiv=\"Refresh\" content=\"0; URL=/forum/index.php\">\n";
print "</HEAD>\n";
print "<BODY>\n";
print "<H3>The URL For the Forums has been changed. You should be automatically redirected to the new pages. If your Browser doesn't automatically forward you, click <A HREF=\"/forum/index.php\">Here</A> </H3>\n";
print "</BODY>\n";
print "</HTML>\n";
Let's them know they're being redirected and gives them a manual method in case their browser for some reason doesn't like refresh/redirect's.
Remember: Those \'s are needed to escape the ""'s!
Katherine