controlling SSL at page level in IIS
For various reason I would like to turn off SSL at a page level. Is this best practice? What should I look out for while I am doing this? What is considered the safest way to do this? The way I was going to do this was:
Right click on the page-> navigate to properties-> click file security->then uncheck require secure channel.
Will this effect other pages. Any help would be great thank you
That setting you are on about wouldn’t work anyway. Note how it says REQUIRE.
If it was ticked What this would mean is that if someone tried to connect on http it would fail or redirect them to https. Unticking it simply means they can connect on both. So if the previous page they were on was https and a link takes them to this page it will stay on https.
I think you will need to code it into the pages themselves. As in the hyper link itself you will need to specify the full URL starting with http:// rather than a relative URL. There are other methods as well like redirectors
Check more discussion of this question.
Related posts:
Leave a comment
Recent Posts
- Windows File Permissions and Attributes
- What is the easiest way to upgrade my existing Perl 5.14 to Perl 5.16 on FreeBSD 9 using the ports system?
- Know if mysql has done its job
- Redirect https .com to https .co.uk without a valid SSL cert on .com without DNS change
- Why is it a bad idea to use customer email as from address





