http://www.modssl.org/docs/2.6/ssl_reference.html#ToC22

jason


----- Original Message -----
From: "Daniel Tryba" <[EMAIL PROTECTED]>
To: "Michael Conley" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, February 09, 2001 12:24 PM
Subject: Re: [PHP] Files only available via HTTPS


> On Thu, Feb 01, 2001 at 04:29:09PM -0800, Michael Conley wrote:
> > I have several PHP files that I only want users to be able to access via
> > HTTPS.  How can I control that on an Apache 1.3.14 server running on
RedHat
> > 7?  I have openssl and mod_ssl working fine.  Currently, I can access
all of
> > the files on my site via either http or https.  I want to keep certain
files
> > (with interesting information) from being accessed via http.  I realize
this
> > isn't really a PHP question, but I have no idea how to do this.
>
> You could check on which port the request was made for the php file.
> https is usually port 443
>
> if ($SERVER_PORT!=443)
> header("Location: https://server/$PHP_SELF");
>
> --
>
> Daniel Tryba
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to