From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <97a49263e0b4c855f2f2a42975a9b8bc@9netics.com> To: 9fans@9fans.net Date: Sun, 19 Apr 2009 09:02:07 -0700 From: Skip Tavakkolian <9nut@9netics.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] web server Topicbox-Message-UUID: e932372a-ead4-11e9-9d60-3106f5b1d025 you could make local mods to your httpd so that paths starting with /cgi are given similar treatment as those that start with /magic; it would execute "cgi" and pass it the arguments as usual. then url is: http://myserver/cgi/foo?var1=1&var2=2 and in script "foo" the $QUERY_STRING will be "var1=1&var2=2" >>> http://myserver/magic/cgi/foo?var1=val1?var2=val2 >> >> i think you wish >> >> http://myserver/magic/cgi?var1=val1&var2=val2 >> >> - erik > > So what are these magical vars? Where do I specify > the cgi program to run? > > > John