summaryrefslogtreecommitdiffstats
path: root/tests/auto/qabstractnetworkcache/tests/httpcachetest_lastModified304.cgi
blob: bdf23bed2f44b9a5b38863242a9eafa0b6ca7281 (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!"