summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/support/modules/network_test_server/files/www/htdocs/qtest/cgi-bin/httpcachetest_lastModified304.cgi
blob: fbf3461b57796fcd10a5ef4a278172f5442a6b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if [ "${HTTP_IF_MODIFIED_SINCE}" == "Sat, 31 Oct 1981 06:00:00 GMT" ] ; then
    echo "Status: 304"
    echo ""
    exit
fi

echo "Last-Modified: Sat, 31 Oct 1981 06:00:00 GMT"
echo "Content-type: text/html"
echo ""
echo "Hello World!"