Help for this page

Select Code to Download


  1. or download this
    <html>
    <meta http-equiv="Refresh" content="1; URL=redirected.html"/>
    ...
    you won't see me
    </body>
    </html>
    
  2. or download this
    #!/usr/bin/perl -Tw
    
    ...
    use CGI qw(redirect);
    
    print redirect('http://localhost/redirected.html');
    
  3. or download this
    [jeffa]$ perl -MLWP::Simple -le'getprint "http://localhost/cgi-bin/red
    +irect.cgi"'
    <html>
    ...
    you won't see me
    </body>
    </html>