[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-developers] Forcing HTTPS for certain parts of a site
- Subject: Re: [cobalt-developers] Forcing HTTPS for certain parts of a site
- From: Francesc Leveque <francesc@xxxxxxxxxxxxxxxxxxxxx>
- Date: Tue Aug 21 20:58:22 2001
- List-id: Discussion Forum for developers on Sun Cobalt Networks products <cobalt-developers.list.cobalt.com>
El 22 Aug 2001 09:28:11 +0100, Peter Dickson escribió:
> How do I force HTTPS when browsing certain areas of a site? e.g. if I try
> and browse to http://www.domain.com/adminstrate I want the browser to
> automatically go to https://www.domain.com/adminstrate.
>
One way to do that... Just suggesting
http://www.domain.com/adminstrate
should look like this:
<html>
<body>
<script> window.location="https://www.domain.com/adminstrate" </script>
</body>
</html>