Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I already found some good sources with hints and tips like http://blog.laksha.net/2008/03/enabling-ssl-in-dotnetnuke-and.html about running DNN with SSL.

My question is: If I would like to change the whole site (not only single pages) to SSL, do I need to configure anything in DNN? Or is it enough to install the certificate (and probably configure IIS)?

Thx

share|improve this question
You should be able to configure everything VIA IIS. – dkroy Jul 24 '12 at 15:16

2 Answers

It is enough just to install the certificate in IIS. Then you need to have IIS redirect to that protocol. Just google 'IIS redirect to https', that should tell you everything you need.

share|improve this answer
I'll give it a try this way and will post here about the result, thx. – sl3dg3 Jul 25 '12 at 6:38

I would like to make ONLY a folder https protected, not the entire site. How would i do it? Which changes do i need?

Here is the code that i am using in my htaccess:

RewriteEngine On RewriteCond %{HTTP_HOST} ^(.*.)*mydomain.com$ [NC] RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://www.mydomain.com$1 [R]

share|improve this answer
1  
We are talking here about IIS and DNN, and not about Apache - you are wrong here. – sl3dg3 Jul 24 '12 at 16:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.