|
Home > Archive > IIS Server Security > September 2005 > How to set SSL to specific web page
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to set SSL to specific web page
|
|
|
|
Hi,
>
> Is it possible to implement in SSL in specific web page. Can you give
> a details or example..
> Is really require separate virtual directory for secured and unsecured
> pages.
>
> Thanks & Regards
> Edayachandran.V
| |
| David Wang [Msft] 2005-08-14, 2:48 am |
| Yes, you can configure IIS to require SSL on a per URL basis.
http://blogs.msdn.com/david.wang/ar...S_behavior.aspx
--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"EDA" <EDA@discussions.microsoft.com> wrote in message
news:9789A656-17DE-4C68-9887-A45F044E0C9D@microsoft.com...
Hi,
>
> Is it possible to implement in SSL in specific web page. Can you give
> a details or example..
> Is really require separate virtual directory for secured and unsecured
> pages.
>
> Thanks & Regards
> Edayachandran.V
| |
| Sparky Polastri 2005-09-16, 6:00 pm |
|
"EDA" <EDA@discussions.microsoft.com> wrote in message
news:9789A656-17DE-4C68-9887-A45F044E0C9D@microsoft.com...
>
> Hi,
>
HTTP vs HTTPS is a function of the request coming to the server from browser
so you sort of have to trick the user into requesting in HTTPS.
You can link with an absolute link using HTTPS.
You can use the "properties" of the file or folder to make IIS only accept
HTTPS requests (if the user doesn't they'll get an error) Some users then
use the custom errors feature to redirect the user back to the file or the
home page in HTTPS.
Or you can use a redirect script using ASP to switch to HTTPS mode on
individual files.
(one way to do it:
http://support.microsoft.com/defaul...b;EN-US;q239875)
There are others using other languages...
|
|
|
|
|