|
Simple Redirect FormOne simple way to allow visitors to easily jump from one section or your web site to another is by using a "redirect" script. A small form and simple CGI can be designed to facilitate such a task. The redirect form and CGI source are presented in two sections below. HTML Source for the Redirect FormThe HTML source below represents a simple redirect form. This form can be customized for your Virtual Server by simply changing the URLs and Titles (shown in bold) to the URLs and Titles that correspond to specific documents on your web site. <html> <head> <title>Redirect Form</title> </head> <body> <form method="POST" action="/cgi-bin/library/redirect/redirect.pl"> <select name="url"> <option value=""> Select a Destination <option value="http://www.web-design.net/index.shtml"> BWSD Home Page <option value="http://www.web-design.net/awpricing.html"> BWSD AW Virtual Servers <option value="http://www.web-design.net/servers/reseller.html"> BWSD Reseller Program <option value="http://www.web-design.net/support/"> BWSD Technical Support </select> <input type=submit name=submit value="Go!"> </form> </body> </html> The form shown above can be modified to automatically redirect when a user has selected an option. This is done by adding a little JavaScript to one line in form above. This addition is show below: change the line: to: If you are unfamiliar with the FORM HTML element, or would like to learn more about forms, the following URL is an excellent resource: http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html How to Install the Redirect CGITo install the redirect CGI on your Virtual Server you will need to do the following:
Once you have completed the installation successfully, you will have a working redirect form like the one shown below (go ahead and test it).
|