"Script GET /cgi-bin/foo" doesn't apply to all GET requests
The documentation at
http://httpd.apache.org/docs/2.2/mod/mod_actions.html#script
says that "Script with a method of GET will only be called if there are =
query arguments present." Is there any way to work around this =
limitation? I would like a GET request for e.g.
http://example.com/user/foo
to be passed through to the specified CGI script irrespective of whether =
query arguments are present or not.
Michael=
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Re: "Script GET /cgi-bin/foo" doesn't apply to allGET requests
Michael Stillwell wrote:
> The documentation at
>
> http://httpd.apache.org/docs/2.2/mod/mod_actions.html#script
>
> says that "Script with a method of GET will only be called if there are query arguments present." Is there any way to work around this limitation? I would like a GET request for e.g.
>
> http://example.com/user/foo
>
> to be passed through to the specified CGI script irrespective of whether query arguments are present or not.
>
Just don't use the Script directive then.
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
<Directory /var/www/cgi-bin>
Options ExecCGI
</Directory>
will allow any file within that directory to be executed as a CGI
script, no matter the method or the arguments.
Just make sure that what you put there is safe.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Re: "Script GET /cgi-bin/foo" doesn't apply to all GET
On Thu, Dec 31, 2009 at 2:31 PM, Andr=E9 Warnier <aw [at] ice-sa.com> wrote:
> Michael Stillwell wrote:
>>
>> The documentation at
>>
>> http://httpd.apache.org/docs/2.2/mod/mod_actions.html#script
>>
>> says that "Script with a method of GET will only be called if there are
>> query arguments present." =A0Is there any way to work around this limita=
tion?
>> =A0I would like a GET request for e.g.
>>
>> http://example.com/user/foo
>>
>> to be passed through to the specified CGI script irrespective of whether
>> query arguments are present or not.
>>
> Just don't use the Script directive then.
>
> ScriptAlias /cgi-bin/ /var/www/cgi-bin/
>
> <Directory /var/www/cgi-bin>
> =A0Options ExecCGI
>
> </Directory>
>
> will allow any file within that directory to be executed as a CGI script,=
no
> matter the method or the arguments.
> Just make sure that what you put there is safe.
I didn't mention this in my original email, but I would like to call
different scripts depending on the method. e.g. GET.php for GET,
PUT.php for PUT.
Michael
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org