Getting A "Click" To Do Nothing


Sometime you may want "click" in the default region to do nothing. One such method is to assign a script to the default region which returns a 204 status. For example:

The script nph-null can be housed in your cgi-bin directory. If necessary, consult your web administrator for installation procedures or to find out if another script is available. The content of script nph-null is as follows:

   #!/usr/bin/perl
   print <<"EOM"; 
   HTTP/1.0 204 No response
   Server: $ENV{'SERVER_SOFTWARE'}
   Content-type: text/plain
   EOM

back to IHiP