File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / tests / docroot / www / 404.pl
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Nov 2 10:35:00 2016 UTC (7 years, 9 months ago) by misho
Branches: lighttpd, MAIN
CVS tags: v1_4_41p8, HEAD
lighttpd 1.4.41

#!/usr/bin/env perl

my $request_uri = $ENV{'REQUEST_URI'};

if ($request_uri =~ m/^\/dynamic\/200\// ) {
  print "Status: 200\n",
        "Content-Type: text/plain\n",
        "\n",
        "found here\n";
}
elsif ($request_uri =~ m|^/dynamic/302/| ) {
  print "Status: 302\n",
        "Location: http://www.example.org/\n",
        "\n";
}
elsif ($request_uri =~ m/^\/dynamic\/404\// ) {
  print "Status: 404\n",
        "Content-Type: text/plain\n",
        "\n",
        "Not found here\n";
}
elsif ($request_uri =~ m/^\/send404\.pl/ ) {
  print "Status: 404\n",
        "Content-Type: text/plain\n",
        "\n",
        "Not found here (send404)\n";
}
elsif ($request_uri =~ m/^\/dynamic\/nostatus\// ) {
  print ("found here\n");
}
elsif ($request_uri =~ m/^\/dynamic\/redirect_status\// ) {
  print "Status: $ENV{'REDIRECT_STATUS'}\n",
        "Content-Type: text/plain\n",
        "\n",
        "REDIRECT_STATUS\n";
}
else {
  print "Status: 500\n",
        "Content-Type: text/plain\n",
        "\n",
        "huh\n";
};

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>