OK. So, let's take PHP as an example.
- I'm entering a URL in the browser, requesting a php script. (e.g.
http://www.somedomain.com/index.php) - The browser sends that request to the appropriate server.
- The server recognizes - by its extension (
.php) - that's it's a PHP file. - The PHP interpreter processes the file and outputs the results.
- The server sends back the output.
Now, let's say we are dealing with a... home-made interpreter XYZ (with its binary,etc), dealing e.g. with .xyz files.
How should I go about that, so all the above things are valid for my XYZ interpreter?
How should I set this whole thing up, so that it works properly?
Hint : I'm not requesting help on how to write an interpreter, but on how to make it function the above way...

CGIinterpreter by making the script executable and giving it a standard.cgiextension. With a shebang of#!/usr/bin/awkyou can utilize it. (Configuring specific extensions to behave that way is step 2, most simply with a RewriteRule even.) – mario Apr 9 '12 at 17:13