How to make apache let me define the body of a "200 OK" response with a Location header?
Here is what I have in a cgi-bin directory: cgi-bin> cat test1 #!/bin/sh echo "Status: 200 OK" echo "Content-type: text/plain" echo echo "Hello world 1" cgi-bin> cat test2 #!/bin/sh echo "Status: 200 OK" echo "Content-type: text/plain" echo "Location: /cgi-bin/test1" echo…