CGI: Output - Location

אם הערך הוא url אז השרת מכוון את הדפדפן אל עבר הדף שהוא רוצה

Location: http://WWW.Stars.com/

אם ברצונך להפנות את המשתמש אל עבר url חלקי שנמצא בשרת שלך אז השתמש בדוגמא זו

 

& at The
#! /usr/bin/perl

$home	= "/home/web/public_html/Software/Perl";
require "$home/cgi-lib.pl";	# CGI library

&ReadParse;			# Get form data set

$button	= $in{'Button'};	# Which button ?
$button	=~ s/Locate/Location/;
$button	=~ s/Resources/References/;
				# Redirect server.
print	"Location: /$button\n\n";

חזרה לדף הראשי