I should of thought of that myself. The page will now actually behave
differently depending on whether the page is accessed securely now - aint
goal post moving a wonderful thing? I just hope I can finish the work before
they decide they want it done in ASP instead.....
sam
----- Original Message -----
From: "Jan Labanowski" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: "Jan Labanowski" <[EMAIL PROTECTED]>
Sent: Monday, April 23, 2001 2:31 PM
Subject: Re: SSL detection
> The simpler way would be to put into httpd.conf the block
>
>
> <Directory "/my/directory">
> <Limit>
> Order deny,allow
> Deny from all
> </Limit>
> </Directory>
>
> In the HTTP section (before the SSL section in the httpd.conf)
>
> and the block
> <Directory "/my/directory">
> <Limit>
> Order deny,allow
> Allow from all
> </Limit>
> </Directory>
>
> within the HTTPS section (within the SSL section of httpd.conf).
> You may also need to define "Alias", and to it by "Location",
> but try this first.