I need to assign a filetype to a custom interpreter (without the need of defining the shebang #!/blah/blah in a script)
I've tried the following in the httpd.conf, but could not get it to work this way.... so I'm either missing something or am on a completely wrong track.... (scrits have the file extension .mip)
<Directory "/xampp-portable/htdocs">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
AddHandler myinterpreter .mip
Action myinterpreter /cgi-bin/interpreter.exe
Require all granted
</Directory>
any help is appreciated.