In Apache I would like a URL "/myscript" or "/myscript?param=myparam" to execute a CGI script located at:
/usr/local/scripts/custom.pl
I have tried:
Action custom-action /usr/local/scripts/custom.pl
<Location "/myscript">
SetHandler custom-action
</Location>
but this isn't working.
Any ideas how I can achieve the mapping of URL to script?