in reply to Re^5: How to send a "true" 404 error via Perl
in thread How to send a "true" 404 error via Perl
[server]$ cat test.cgi #!/usr/bin/perl print "Status: 404 Not Found\n"; print "Content-Type: text/html\n"; print "\n"; print "<title>404 Not Found</title>\n"; print "<h1>404 Not Found</h1>\n"; [server]$
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: How to send a "true" 404 error via Perl
by ikegami (Patriarch) on Jan 17, 2007 at 23:25 UTC | |
by lokiloki (Beadle) on Jan 17, 2007 at 23:30 UTC |