Hi - we've recently acquired SSL for our sites, and I'm wondering if there is way inside DNN to redirect http:// requests to use https:// ?
Thanks
Tom,
depending on your IIS you have to install the Url Rewriter module for IIS (before IIS 10.0 version 1709).
Then implement the following rewrite rule in your web.config:
[rewrite] [rules] [rule name="HTTP to HTTPS redirect" stopProcessing="true"] [match url="(.*)" /] [conditions] [add input="{HTTPS}" pattern="off" ignoreCase="true" /] [/conditions] [action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" /] [/rule] [/rules] [/rewrite]
(change [ to < and ] to >)
Happy DNNing! Michael
These Forums are for the discussion of the open source CMS DNN platform and ecosystem.
For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:
Awesome! Simply post in the forums using the link below and we'll get you started.