repo.or.cz
/
lighttpd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- next is 1.4.56
[lighttpd.git]
/
tests
/
docroot
/
www
/
cgi.pl
blob
f7296f8b326deb9aefd761de4a7b5ebad920f234
1
#!/usr/bin/env perl
2
3
if
(
$ENV
{
"QUERY_STRING"
}
eq
"internal-redir"
) {
4
print
"Location: /cgi-pathinfo.pl/foo
\r\n\r\n
"
;
5
exit
0
;
6
}
7
8
print
"Content-Type: text/html
\r\n\r\n
"
;
9
10
print
$ENV
{
"SCRIPT_NAME"
};
11
12
0
;