#!/bin/ch /* Example Ch CGI program that send a file. */ #include int main() { setvbuf(stdout, NULL, _IONBF, 0); /* printf("Location: /file_path/filename\n\n"); */ printf("Location: http://www.softintegration.com/index.html\n\n"); /* or printf("Location: /index.html\n\n"); */ }