Hi Monks,
Please provide a basic cgi perl script that can be launched from a browser that redirects users to a separate website: Example: Users launch -www.MAIL.MyDomain.com/program.pl and the cgi per script sends the user to www.MAL.MyDomain.com/directory/
When I run the following program from perl it takes me to the correct website:
#! perl
# owa.pl
use strict;
system (1,'start http:// www.MAL.MyDomain.com/directory/');
But I don’t know how to turn this into a cgi perl program. Please help.