> De: Doug McNutt
> Assunto: Re: [users@httpd] cgi-bin subdirectories
> Para: users@httpd.apache.org
> Data: Segunda-feira, 14 de Maio de 2012, 23:13
> At 16:03 -0700 5/14/12, Téssio
> Fechine wrote:
> >Hello,
> >I am having a problem with subdirectories in cgi
Hello,
I am having a problem with subdirectories in cgi-bin.
Scripts like 'cgi-bin/user.pl' executes fine, but if I move it to
'cgi-bin/something/user.pl' it stops working.
I'm using the default centos-5.8 httpd.conf file:
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
AllowOverride None
Op
Hello,
I am following some HOWTOs about mod_rewrite, but they are not working for me.
I want to translate 'example.net/mocha' to '/coffee.cgi?type=mocha'.
This is what I have:
##.htaccess##
# RewriteEngine on
# Options +FollowSymlinks
# RewriteBase /
# RewriteRule ^(.*)$ coffee.cgi?type=$1
##cof
> De: Tom Evans
> Assunto: Re: [users@httpd] Question About ACL
> Para: users@httpd.apache.org
> Data: Segunda-feira, 26 de Março de 2012, 10:14
> 2012/3/26 Téssio Fechine :
> >
> >> Not at all; you are right that that stanza is
> equivalent to
> >>
> Not at all; you are right that that stanza is equivalent to
> "Order
> Allow,Deny", but the behaviour after adding an additional
> Allow is
> different.
>
> There isn't one right or wrong way, you just have to
> understand that
> there are two ways, and what the differences are.
>
> Cheers
>
> De: Tom Evans
> Assunto: Re: [users@httpd] Question About ACL
> Para: users@httpd.apache.org
> Data: Segunda-feira, 26 de Março de 2012, 8:19
> 2012/3/26 Téssio Fechine
> >
> > Hello,
> > I am learning apache, and the ironic part is that
> reading
Hello,
I am learning apache, and the ironic part is that reading the apache
documentation on acl reinforced my doubt in this matter.
In this part:
In the following example, all hosts in the apache.org domain are allowed
access; all other hosts are denied access.
Order Deny,Allow
Deny from all
A