[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Redirect http to https



----- Original Message -----
From: "Gavin Nelmes-Crocker" <cobalt@xxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Sent: Tuesday, January 08, 2002 5:06 PM
Subject: RE: [cobalt-users] Redirect http to https


> > I have PHP installed which lets you easily force any page to be
> > accessed via
> > SLL. Just add the following PHP to the top of each page you want to be
> > accessed only via SSL.
>
> Thanks Steve, I do have php installed as well and use it a lot, I'm just
not
> sure I want to give it to each customer who needs this as I charge extra
for
> php in our hosting package.  The other method seemed so simple with
> .htaccess just a shame it didn't work when I tried but maybe someone out
> there can figure out why.


why can't you just have a simple redirect?

http://www.yoursite.com/index.html

which contains

<meta http-equiv="refresh" content="0; url=https://secure.yoursite.com";>

too easy?